📄 makefile
字号:
# Makefile for the gpc++ kernelinclude ../Makefile.iniTARGET = $(GPLIBFILE)GPKERNEL= compare.o \ config.o \ contain.o \ create.o \ cross.o \ eval.o \ gene.o \ generate.o \ gprand.o \ gpv.o \ gp.o \ loadsave.o \ misc.o \ mutate.o \ node.o \ pop.o \ select.o OBJS = $(GPKERNEL) CPPFLAGS = $(OVERALLCPPFLAGS) -I$(GPINCLUDE) # Implicit rule how to compile.cc.o: $(CCC) $(CPPFLAGS) -c $<# Create the GP library. Use either ld (for dynamic libraries) or ar# and ranlib.$(TARGET) : $(OBJS) $(AR) -r $(TARGET) $(OBJS) $(RANLIB) $(TARGET)# $(LD) -r -o $(TARGET) $(OBJS)clean: rm -f $(OBJS) *~superclean: clean rm -f $(TARGET)strip: strip $(OBJS) make# File dependenciescompare.o: compare.cc ../include/gp.hconfig.o: config.cc ../include/gpconfig.hcontain.o: contain.cc ../include/gp.hcreate.o: create.cc ../include/gp.hcross.o: cross.cc ../include/gp.heval.o: eval.cc ../include/gp.hgene.o: gene.cc ../include/gp.hgenerate.o: generate.cc ../include/gp.hgp.o: gp.cc ../include/gp.hgprand.o: gprand.cc ../include/gp.hgpv.o: gpv.cc ../include/gp.hloadsave.o: loadsave.cc ../include/gp.hmisc.o: misc.cc ../include/gp.hmutate.o: mutate.cc ../include/gp.hnode.o: node.cc ../include/gp.hpop.o: pop.cc ../include/gp.hselect.o: select.cc ../include/gp.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -