paradiseo/eo/tutorial/Lesson3/Makefile
2001-03-13 08:25:05 +00:00

14 lines
370 B
Makefile

.cpp: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -o $@ $*.cpp ../../src/utils/libeoutils.a ../../src/libeo.a
.cpp.o: ; c++ -DPACKAGE=\"eo\" -DVERSION=\"0.9.1\" -I. -I../../src -Wall -g -c $*.cpp
secondEA = SecondBitEA
ALL = $(secondEA) exercise3.1
lesson3 : $(secondEA)
all : $(ALL)
clean :
@/bin/rm $(ALL) *.o *.sav *.xg *.status *~