From 4e343717fcc07082d7ac1941399e7be60a0f86fe Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sun, 28 May 2006 19:19:13 +0000 Subject: [PATCH] Mejora make depend y lo usa. --- practicas/pipi/src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/practicas/pipi/src/Makefile b/practicas/pipi/src/Makefile index aa8d258..3c5f4e0 100644 --- a/practicas/pipi/src/Makefile +++ b/practicas/pipi/src/Makefile @@ -38,14 +38,14 @@ fuentes ?= $(wildcard *.cpp) .PHONY: all clean -all: $(targets) +all: depend $(targets) test_send: test_send.o media.o test_recv: test_recv.o media.o depend: - makedepend $(fuentes) + @makedepend $(fuentes) > /dev/null 2>&1 clean: @$(RM) -fv *.o $(targets) -- 2.43.0