LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 2/2] USB: tools: Add a Makefile
@ 2011-01-27 19:39 Davidlohr Bueso
  2011-01-28 12:19 ` Sergei Shtylyov
  0 siblings, 1 reply; 7+ messages in thread
From: Davidlohr Bueso @ 2011-01-27 19:39 UTC (permalink / raw)
  To: Michal Nazarewicz, David Brownell, Greg Kroah-Hartman; +Cc: LKML, linux-usb

I originally sent this in several months ago, but never got around to correcting the changes, so... here it is.

From: Davidlohr Bueso <dave@gnu.org>

Build USB tools easier.

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
---
 tools/usb/Makefile |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 tools/usb/Makefile

diff --git a/tools/usb/Makefile b/tools/usb/Makefile
new file mode 100644
index 0000000..3995509
--- /dev/null
+++ b/tools/usb/Makefile
@@ -0,0 +1,13 @@
+# Makefile for building 'usbtest'
+
+CC = $(CROSS_COMPILE)gcc
+PTHREAD_LIBS = -lpthread
+WARNINGS = -Wall -Wextra
+CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS)
+
+all: testusb ffs-test
+%: %.c
+	$(CC) $(CFLAGS) -o $@ $^
+
+clean:
+	$(RM) testusb ffs-test
-- 
1.7.1





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-02-04 19:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-27 19:39 [PATCH 2/2] USB: tools: Add a Makefile Davidlohr Bueso
2011-01-28 12:19 ` Sergei Shtylyov
2011-01-28 12:23   ` Davidlohr Bueso
2011-01-28 12:38     ` Sergei Shtylyov
2011-01-28 12:49       ` Sergei Shtylyov
2011-01-28 12:51       ` Davidlohr Bueso
2011-02-04 19:45         ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).