aboutsummaryrefslogtreecommitdiff
path: root/tools/usb
diff options
context:
space:
mode:
authorDavidlohr Bueso <dave@gnu.org>2011-02-06 14:13:37 -0300
committerGreg Kroah-Hartman <gregkh@suse.de>2011-02-17 10:43:03 -0800
commit4f22ce7045c16e36d391fdfe331a397d55578493 (patch)
treea1145db066f0cf186d4f150fb1a4f83afe713e01 /tools/usb
parent05c3eebd50ad831c462ec264f82a87654d0ee974 (diff)
USB: tools: Add a Makefile
Build USB tools easier. Signed-off-by: Davidlohr Bueso <dave@gnu.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'tools/usb')
-rw-r--r--tools/usb/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/usb/Makefile b/tools/usb/Makefile
new file mode 100644
index 00000000000..8b704af1434
--- /dev/null
+++ b/tools/usb/Makefile
@@ -0,0 +1,13 @@
+# Makefile for USB tools
+
+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