From 1d8ab861662a4c72da9f7b3b9b0fe9da05d5bfd6 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 15 Dec 2006 19:39:34 +0000 Subject: [PATCH 1/1] Mejora Makefile --- trunk/src/Makefile | 50 ++++++++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 22 deletions(-) diff --git a/trunk/src/Makefile b/trunk/src/Makefile index d72514e..3cd014c 100644 --- a/trunk/src/Makefile +++ b/trunk/src/Makefile @@ -1,22 +1,28 @@ - -BREVEDIR=../../breve_2.4/plugins -CXXFLAGS=-Wall -g -I$(BREVEDIR) - -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 $(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) + +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 + -- 2.43.0