makefile

来自「1984-1993模糊 C 源代码竞赛.zip 非常的好,不过这是DOS格式,」· 代码 · 共 35 行

TXT
35
字号
# %W% %G% %U%## 1985 makefile## Copyright (c) 1985, 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= applin august lycklama shapiro sichermanall: ${WINNERS}applin: applin.c	cc $? -o $@august: august.c	cc $? -o $@lycklama: lycklama.c	cc $? -o $@shaprio: shaprio.c	cc $? -o $@scherman: sicherman.c	cc $? -o $@clean:	rm -f coreclobber: clean	rm -f ${WINNERS}install: all	@echo are you kidding'??'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?