From: Leandro Lucarella Date: Sun, 28 May 2006 19:19:13 +0000 (+0000) Subject: Mejora make depend y lo usa. X-Git-Tag: svn_import~75 X-Git-Url: https://git.llucax.com/z.facultad/75.74/practicos.git/commitdiff_plain/4e343717fcc07082d7ac1941399e7be60a0f86fe?ds=inline Mejora make depend y lo usa. --- 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)