📄 makefile
字号:
## Copyright (c) 1984, 1985, 1986 Xerox Corp.#DESTBIN = ../../binDESTLIB = ../../libDESTMAN = ../../manDESTINCLUDE = ../../includeMFLAGS = DESTBIN=../${DESTBIN} DESTLIB=../${DESTLIB} DESTMAN=../${DESTMAN} \ DESTINCLUDE=../${DESTINCLUDE}CFLAGS= -O# Programs that live in subdirectories, and have makefiles of their own.#SUBDIR= ipfe iptotext ipmetrics makextdev maha mp2res plot2ip charset dipress restotext stackres texttoip ipfall: ${SUBDIR}${SUBDIR}: FRC cd $@; make ${MFLAGS}FRC:install: ${DESTBIN}/qip for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} install); done${DESTBIN}/qip: qip cp qip ${DESTBIN}lint: for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} lint); doneclean: rm -f a.out core *.s *.o for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} clean); done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -