Save copies of old simple Makefiles
This commit is contained in:
parent
dbd0a46d75
commit
32cf83cfee
9 changed files with 278 additions and 0 deletions
16
eo/tutorial/ParadisEO/Lesson3/Makefile.simple
Normal file
16
eo/tutorial/ParadisEO/Lesson3/Makefile.simple
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
.SUFFIXES: .cpp
|
||||
.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
|
||||
|
||||
ALL = CellularBitEA
|
||||
|
||||
lesson3 : $(firstEA)
|
||||
|
||||
all : $(ALL)
|
||||
|
||||
clean :
|
||||
@/bin/rm $(ALL) *.o *~
|
||||
|
||||
CellularBitEA : binary_value.h
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue