makefile

来自「用C++编写的遗传算法」· 代码 · 共 44 行

TXT
44
字号
# Makefile for allinclude		./Makefile.iniall:	cd src; make	cd symbreg; make	cd lawn; make	cd skeleton; make	cd ant; makeclean:	rm -f *~	cd src; make clean	cd symbreg; make clean	cd lawn; make clean	cd skeleton; make clean	cd ant; make cleansuperclean: 	rm -f *~	cd src; make superclean	cd symbreg; make superclean	cd lawn; make superclean	cd skeleton; make superclean	cd ant; make superclean# Strip debug information (if there is any). strip:	cd src; make strip	cd lawn; make strip	cd skeleton; make strip	cd ant; make strip	cd symbreg; make stripinstall:	$(INSTALL) -d $(INSTALLDIR)/include	$(INSTALL) -d $(INSTALLDIR)/lib	$(INSTALL) -f $(INSTALLDIR)/lib lib/$(GPLIBFILE)	$(INSTALL) -f $(INSTALLDIR)/include include/gp.h	$(INSTALL) -f $(INSTALLDIR)/include include/gpconfig.h

⌨️ 快捷键说明

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