⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gnumakefile.kernel

📁 Genetic Programing of music
💻 KERNEL
字号:
## Linux users should uncomment this when using gccCFLAGS += -mieee-fp## if you have the vfork() system call available (most Un*x systems),## use it to spawn the checkpoint file compression process.CFLAGS += -DUSEVFORK## if you don't have vfork(), use the (much) less efficient system()## system call.# CFLAGS += -DUSESYSTEM## if both of these are commented out, checkpoint compression will not## be available.###### end of configuration section###kobjects = main.o gp.o eval.o tree.o change.o crossovr.o reproduc.o \	mutate.o select.o tournmnt.o bstworst.o fitness.o genspace.o \	exch.o populate.o ephem.o ckpoint.o event.o pretty.o individ.o \	params.o random.o memory.o output.okheaders = event.h defines.h types.h protos.h protoapp.h.PHONY : all cleanLIBS += -lmCFLAGS += -I. -I$(KERNELDIR) all : $(TARGET)lilgp.h = $(addprefix $(KERNELDIR)/,$(kheaders)) $(uheaders)$(kobjects) : %.o : $(KERNELDIR)/%.c	$(CC) -c $(CFLAGS) $< -o $@$(uobjects) : %.o : %.c	$(CC) -c $(CFLAGS) $< -o $@$(kobjects) $(uobjects) : $(lilgp.h)$(TARGET) : $(kobjects) $(uobjects)	$(CC) $(LFLAGS) -o $@ $^ $(LIBS) clean :	\rm -f $(kobjects) $(uobjects) core

⌨️ 快捷键说明

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