📄 mk_linux
字号:
############################################################ ## Makefile of SCT ## ## Bruce Zhao 2001/10 ## Email:zhaofei@zflogic.com ## http://www.zflogic.com ############################################################# set compiler typeCC=gcc# set compiler argument#-g to generate debug info for gdbCFLAGS=-gLDFLAGS=all: sctsct: sct.o \ tio.o \ util.o \ cmd.o \ main.o $(CC) -o sct sct.o tio.o util.o cmd.o main.omain.o: main.c \ stdhdr.h $(CC) -c main.c $(CFLAGS) sct.o: sct.c \ stdhdr.h $(CC) -c sct.c $(CFLAGS) tio.o: tio.c \ stdhdr.h $(CC) -c tio.c $(CFLAGS) util.o: util.c \ stdhdr.h $(CC) -c util.c $(CFLAGS) cmd.o: cmd.c \ stdhdr.h stdhdr.h: util.h \ tio.h \ sct.h \ cmd.h install: cp sct /usr/binclean: rm -f *.o rm -f sct rm -f *.bak
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -