📄 makefile
字号:
# Makefile for the symbolic regression probleminclude ../Makefile.iniTARGET = symOBJS = symbreg.oCPPFLAGS = $(OVERALLCPPFLAGS) -I$(GPINCLUDE)LDFLAGS = $(OVERALLLDFLAGS) -L$(GPLIB) -lgp -lm # Implicit rule how to compile.cc.o: $(CCC) $(CPPFLAGS) -c $<all: $(TARGET)clean: rm -f $(OBJS) result.* *~superclean: clean rm -f $(TARGET)strip: strip $(OBJS) $(TARGET)$(TARGET) : $(OBJS) $(GPLIBFILE) $(CCC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS)# File dependenciessymbreg.o: symbreg.cc ../include/gpconfig.h ../include/gp.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -