This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/eo/tutorial/ParadisEO/Lesson3/Makefile.simple
2004-09-17 15:20:19 +00:00

16 lines
376 B
Text

.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