paradiseo/eo/tutorial/Lesson3/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
375 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
secondEA = SecondBitEA
ALL = $(secondEA) exercise1 exercise2 exercise3
lesson3 : $(secondEA)
clean :
@/bin/rm $(ALL) *.o *.sav *.xg *.status *~