?? makefile
字號:
# update these for your working directoryINCLUDE_DIRS = -I ../../../include/LIB = ../../../lib/vfml.a -lmBINDIR = ../../../bin/ifeq (${ARCH}, CYGNUS) BINARY_EXT = .exeelse BINARY_EXT = endif# the name you would like the program to havePROGRAMS = naivebayes# you might care about thisCFLAGS = ${GLOBALCFLAGS} -D${ARCH} ${INCLUDE_DIRS}all: ${PROGRAMS} ${LIB}naivebayes: naivebayes.c ${LIB} makefile ${CC} ${CFLAGS} naivebayes.c ${LIB} -o $@ cp $@${BINARY_EXT} ${BINDIR}.PHONY : cleanclean: rm -r -f *~ *.o.PHONY : clobberclobber: clean rm -r -f ${PROGRAMS} rm -r -f ${BINDIR}naivebayes
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -