]> git.llucax.com Git - z.facultad/75.68/celdas.git/blobdiff - trunk/src/Makefile
Bugfix en CIndiceMagico::remove(string).
[z.facultad/75.68/celdas.git] / trunk / src / Makefile
index e1eb39df255b2ab5ee7bf05f5e430e44249bbfb9..1b5a2fe946b29979c7443c54d0e3d5383a417b79 100644 (file)
@@ -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
+\r
+BREVEDIR=../../breve_2.4/plugins\r
+CXXFLAGS=-Wall -g -I$(BREVEDIR) -DDEBUG\r
+\r
+targets=test plugin.so\r
+\r
+all: $(targets)\r
+\r
+plugin.so: plugin.o sistemaautonomo.o $(BREVEDIR)/brevePlugin.a\r
+       $(CXX) $(CPPFLAGS) -shared -o $@ plugin.o sistemaautonomo.o $(BREVEDIR)/brevePlugin.a\r
+\r
+test: main.o sistemaautonomo.o\r
+       $(CXX) $(LDFLAGS) -o test *.o\r
+\r
+clean:\r
+       $(RM) -fv *.o $(targets) test.exe *~\r
+\r
+depend:\r
+       makedepend -- $(CFLAGS) -- *.cpp\r
+\r
+main.o: main.h sistemaautonomo.h indicemagico.h\r
+\r
+sistemaautonomo.o: sistemaautonomo.h indicemagico.h\r
+\r
+plugin.o: sistemaautonomo.h indicemagico.h\r
+\r
+.PHONY: clean all\r
+\r