makefile

来自「数据挖掘方面的源码」· 代码 · 共 33 行

TXT
33
字号
# update these for your working directoryINCLUDE_DIRS = -I ../../../include/LIB = ../../../lib/vfml.aBINDIR = ../../../bin/ifeq (${ARCH}, CYGNUS)	BINARY_EXT = .exeelse	BINARY_EXT = endif# the name you would like the program to havePROGRAMS = c50wrapper# you might care about thisCFLAGS = ${GLOBALCFLAGS} -D${ARCH} ${INCLUDE_DIRS}all: ${PROGRAMS} ${LIB}c50wrapper: c50wrapper.c ${LIB} makefile	${CC} ${CFLAGS} c50wrapper.c ${LIB} -o $@	cp $@${BINARY_EXT} ${BINDIR}.PHONY : cleanclean: 	rm -r -f *~ *.o.PHONY : clobberclobber: clean	rm -r -f ${PROGRAMS} 	rm -r -f ${BINDIR}c50wrapper

⌨️ 快捷键说明

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