paradiseo/eo/tutorial/Lesson1/Makefile
evomarc b8d4e7faef Initial version of the tutorial.
Warning: all Makefile's are hand-made, and will only work in Linux
2000-11-29 18:19:57 +00:00

12 lines
342 B
Makefile

.cpp: ; g++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/libeo.a ../../src/utils/libeoutils.a
.cpp.o: ; g++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -c $*.cpp
firstGA = FirstRealGA FirstBitGA
ALL = $(firstGA) exercise3
lesson1 : $(firstGA)
clean :
@/bin/rm $(ALL) *.o *~