BREVEDIR=../../breve_2.4/plugins # DEBUG #CXXFLAGS=-Wall -g -I$(BREVEDIR) -DDEBUG # LOG de teorias CXXFLAGS=-Wall -O2 -I$(BREVEDIR) -DLOG # OPTIMIZE #CXXFLAGS=-Wall -O2 -I$(BREVEDIR) -DNDEBUG targets=test plugin.so all: $(targets) plugin.so: plugin.o sistemaautonomo.o $(BREVEDIR)/brevePlugin.a $(CXX) $(CPPFLAGS) -shared -o $@ plugin.o sistemaautonomo.o $(BREVEDIR)/brevePlugin.a test: main.o sistemaautonomo.o $(CXX) $(LDFLAGS) -o test *.o clean: $(RM) -fv *.o $(targets) test.exe *~ depend: makedepend -- $(CFLAGS) -- *.cpp main.o: main.h sistemaautonomo.h indicemagico.h sistemaautonomo.o: sistemaautonomo.h indicemagico.h plugin.o: sistemaautonomo.h indicemagico.h .PHONY: clean all