diff options
author | Davidlohr Bueso <dave@gnu.org> | 2011-02-06 12:13:37 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-02-17 13:43:03 -0500 |
commit | 4f22ce7045c16e36d391fdfe331a397d55578493 (patch) | |
tree | a1145db066f0cf186d4f150fb1a4f83afe713e01 /tools/usb | |
parent | 05c3eebd50ad831c462ec264f82a87654d0ee974 (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/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/usb/Makefile b/tools/usb/Makefile new file mode 100644 index 000000000000..8b704af14349 --- /dev/null +++ b/tools/usb/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | # Makefile for USB tools | ||
2 | |||
3 | CC = $(CROSS_COMPILE)gcc | ||
4 | PTHREAD_LIBS = -lpthread | ||
5 | WARNINGS = -Wall -Wextra | ||
6 | CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS) | ||
7 | |||
8 | all: testusb ffs-test | ||
9 | %: %.c | ||
10 | $(CC) $(CFLAGS) -o $@ $^ | ||
11 | |||
12 | clean: | ||
13 | $(RM) testusb ffs-test | ||