From: Wolfram Sang on 3 Jun 2010 08:50 From: Remy Bohmer <linux(a)bohmer.net> Signed-off-by: Remy Bohmer <linux(a)bohmer.net> Signed-off-by: Wolfram Sang <w.sang(a)pengutronix.de> Cc: Arjan van de Ven <arjan(a)linux.intel.com> --- We carry this patch in our build-system for embedded devices 'ptxdist'. I thought it might be worth picking up... Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Index: latencytop-0.5/Makefile =================================================================== --- latencytop-0.5.orig/Makefile +++ latencytop-0.5/Makefile @@ -26,14 +26,16 @@ endif # We write explicity this "implicit rule" %.o : %.c - gcc -c $(CFLAGS) $(XCFLAGS) $< -o $@ + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(XCFLAGS) $< -o $@ latencytop: $(OBJS) latencytop.h Makefile - gcc $(CFLAGS) $(OBJS) $(LDF) -o latencytop + $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LDF) -o latencytop +.PHONY: clean clean: rm -f *~ latencytop DEADJOE *.o +.PHONY: install install: latencytop mkdir -p $(DESTDIR)/usr/share/latencytop install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: [PATCH 1/3] ARM: module - simplify code with temporaries Next: [PATCH 0/12] PV on HVM Xen |