COSC-4P82-Final-Project/lib/lilgp/kernel/GNUmakefile.kernel

46 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-04-01 00:01:49 -04:00
## Linux users should uncomment this when using gcc
# CFLAGS += -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. (default to system, always available)
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.o boltzman.o sigma.o fsetupdate.o
kheaders = event.h defines.h types.h protos.h protoapp.h
.PHONY : all clean
LIBS += -lm
CFLAGS += -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) $(LDFLAGS) -o $@ $^ $(LIBS)
clean :
\rm -f *.o core