12 lines
375 B
Makefile
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 *~
|