The Makefile remakes cyclictest eache time being called; this patch makes it shut up if not necessary. Signed-off-by: Robert Schwebel --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Index: Makefile =================================================================== --- Makefile.orig +++ Makefile @@ -3,8 +3,10 @@ TARGET=cyclictest FLAGS= -Wall -Wno-nonnull -Wsign-compare -O2 LIBS = -lpthread -lrt -all: cyclictest.c - $(CROSS_COMPILE)gcc $(FLAGS) $^ -o $(TARGET) $(LIBS) +all: cyclictest + +cyclictest: cyclictest.c + $(CROSS_COMPILE)gcc $(FLAGS) $^ -o $@ $(LIBS) clean: rm -f $(TARGET) *.o .depend *.*~ -- Dipl.-Ing. Robert Schwebel | http://www.pengutronix.de Pengutronix - Linux Solutions for Science and Industry Handelsregister: Amtsgericht Hildesheim, HRA 2686 Hannoversche Str. 2, 31134 Hildesheim, Germany Phone: +49-5121-206917-0 | Fax: +49-5121-206917-9