📄 makefile
字号:
# %W% %G% %U%## 1986 makefile## Copyright (c) 1986, Landon Curt Noll & Larry Bassel.# All Rights Reserved. Permission for personal, education or non-profit use is# granted provided this this copyright and notice are included in its entirety# and remains unaltered. All other uses must receive prior permission in # writing from both Landon Curt Noll and Larry Bassel.SHELL=/bin/shWINNERS=marshall hague applin bright stein holloway august pawka wallall: ${WINNERS}marshall: marshall.c cc $? -o $@hague: hague.c cc $? -o $@applin: applin.c cc $? -o $@bright: bright.c cc $? -o $@stein: stein.c -rm -f a.out cc $? -o $@ -ln $@ a.outholloway: holloway.c cc $? -o $@august: august.c cc $? -o $@pawka: pawka.c cc $? -o $@wall: wall.c cc $? -o $@clean: rm -f coreclobber: clean rm -f ${WINNERS} a.outinstall: all @echo are you kidding'??'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -