From: Wolfram Sang on
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/