]> git.llucax.com Git - z.facultad/75.74/practicos.git/commitdiff
Mejora make depend y lo usa.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 28 May 2006 19:19:13 +0000 (19:19 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 28 May 2006 19:19:13 +0000 (19:19 +0000)
practicas/pipi/src/Makefile

index aa8d2588b1a798f8412e0f373dfaeff56d8de471..3c5f4e0dbdebf3b6f932ade4d8e673e74a22d852 100644 (file)
@@ -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)