2 BREVEDIR=../../breve_2.4/plugins
\r
4 #CXXFLAGS=-Wall -g -I$(BREVEDIR) -DDEBUG
\r
6 CXXFLAGS=-Wall -O2 -I$(BREVEDIR) -DLOG
\r
8 #CXXFLAGS=-Wall -O2 -I$(BREVEDIR) -DNDEBUG
\r
10 targets=test plugin.so
\r
14 plugin.so: plugin.o sistemaautonomo.o $(BREVEDIR)/brevePlugin.a
\r
15 $(CXX) $(CPPFLAGS) -shared -o $@ plugin.o sistemaautonomo.o $(BREVEDIR)/brevePlugin.a
\r
17 test: main.o sistemaautonomo.o
\r
18 $(CXX) $(LDFLAGS) -o test *.o
\r
21 $(RM) -fv *.o $(targets) test.exe *~
\r
24 makedepend -- $(CFLAGS) -- *.cpp
\r
26 main.o: main.h sistemaautonomo.h indicemagico.h
\r
28 sistemaautonomo.o: sistemaautonomo.h indicemagico.h
\r
30 plugin.o: sistemaautonomo.h indicemagico.h
\r