# Makefile for gridopt: Landscape Optimization Project
# Copyright (c) 2000 Ralf Seppelt
 

include ../makevars

EXS     = moca

all: $(EXS) 

# Use this for gnu make
$(EXS): %: %.o
	$(CXX) $@.o -o $@ -I. -lm  -D$(SYSTEM)  -L../ga -lga -lm

clean:
	$(RM) *.o *.exe

.c.o:
	$(CC) -c -o $*.o $*.c  -D$(SYSTEM)









