📄 makefile
字号:
############################################### This file is for running tests of library functions # in this directory.## H. L. Deng###################################################include ${COOOLROOT}/src/Makefile.configCWPI = ${CWPROOT}/includeCWPL = ${CWPROOT}/libLIBRARIES = -L$(COOOLL) -L$(CWPL) \ -loptima -lobjfcn -lc++u -lsu -lpar -lcwp -lmINCLUDE = -I$(CWPI) -I$(COOOLI)PROGS = \ ${COOOLB}/test_linearINSTALL: $(PROGS) touch $@$(PROGS): $(C++TARGET) $(C++) -g -c $(INCLUDE) $(@F).cc $(C++) -g -o $@ $(@F).o $(LIBRARIES) @-rm -f $(@F).oremake : @-touch *.cc @-rm -f ${PROGS} @$(MAKE)clean : @-rm -f ${PROGS} @-rm -rf core $(REPOSITORY)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -