From 57f0f512b273f60d52568b8c6b77e17f5636edc0 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 5 Aug 2015 17:04:01 -0300 Subject: Initial import --- tools/usb/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tools/usb/Makefile (limited to 'tools/usb/Makefile') diff --git a/tools/usb/Makefile b/tools/usb/Makefile new file mode 100644 index 000000000..acf2165c0 --- /dev/null +++ b/tools/usb/Makefile @@ -0,0 +1,14 @@ +# Makefile for USB tools + +CC = $(CROSS_COMPILE)gcc +PTHREAD_LIBS = -lpthread +WARNINGS = -Wall -Wextra +CFLAGS = $(WARNINGS) -g -I../include +LDFLAGS = $(PTHREAD_LIBS) + +all: testusb ffs-test +%: %.c + $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) + +clean: + $(RM) testusb ffs-test -- cgit v1.2.3-54-g00ecf