?? makefile
字號:
############################################################ ## Makefile of SCT ## ## Bruce Zhao 2001/10 ## Email:zhaofei@zflogic.com ## http://www.zflogic.com ############################################################# set compiler typeCC=arm-linux-gcc# set compiler argument#-g to generate debug info for gdbCFLAGS=-g LDFLAGS=all: sctsct: sct.o \ tio.o \ util.o \ cmd.o \ main.o $(CC) -o sct sct.o tio.o util.o cmd.o main.o $(CFLAGS)main.o: main.c \ sct.h \ util.h \ cmd.h \ ver.h \ stdhdr.h $(CC) -c main.c $(CFLAGS) sct.o: sct.c \ sct.h \ util.h \ tio.h \ stdhdr.h $(CC) -c sct.c $(CFLAGS) tio.o: tio.c \ tio.h \ util.h \ stdhdr.h $(CC) -c tio.c $(CFLAGS) util.o: util.c \ util.h \ stdhdr.h $(CC) -c util.c $(CFLAGS) cmd.o: cmd.c \ cmd.h \ util.h \ stdhdr.h $(CC) -c cmd.c $(CFLAGS) install: cp sct /usr/binclean: rm -f *.o rm -f sct rm -f *.bak
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -