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