X-Git-Url: https://git.llucax.com/z.facultad/75.68/celdas.git/blobdiff_plain/d318b1ec1b433e9f9c34ba6c8bfacd034de9b3e2..e800bc42e811087efc35350d5bfaa97cd1926d88:/trunk/src/Makefile diff --git a/trunk/src/Makefile b/trunk/src/Makefile index e1eb39d..1b5a2fe 100644 --- a/trunk/src/Makefile +++ b/trunk/src/Makefile @@ -1,18 +1,28 @@ - -CXXFLAGS=-Wall -g - -targets=test - -all: $(targets) - -test: main.o sistemaautonomo.o - $(CXX) $(LDFLAGS) -o test *.o - -clean: - $(RM) -fv *.o $(target) - -depend: - makedepend -- $(CFLAGS) -- *.cpp - -main.o: main.h sistemaautonomo.h indicemagico.h -sistemaautonomo.o: sistemaautonomo.h indicemagico.h + +BREVEDIR=../../breve_2.4/plugins +CXXFLAGS=-Wall -g -I$(BREVEDIR) -DDEBUG + +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 +