📄 makefile
字号:
FLAGS = -I/usr/include
CPP = /usr/lib/cpp
all: cpp.exe
cpp.exe: cpp.obj
lcc -o $@ cpp.obj -lnoexpand.obj
test:
$(CPP) $(FLAGS) pptest >1
./cpp $(FLAGS) pptest >2
diff 1 2 >diff
$(CPP) $(FLAGS) pptest.2 >1
./cpp $(FLAGS) pptest.2 >2
diff 1 2 >>diff
$(CPP) $(FLAGS) pptest.3 >1
./cpp $(FLAGS) pptest.3 >2
diff 1 2 >>diff
rm 1 2
arch:
-rm ../cpp.lzh
lharc a -t ../cpp.lzh readme cpp.c makefile cpp.exe changelog pp*.*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -