firewire: WQ_NON_REENTRANT is meaningless and going away
[deliverable/linux.git] / tools / usb / Makefile
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) -I../include
7
8 all: testusb ffs-test
9 %: %.c
10 $(CC) $(CFLAGS) -o $@ $^
11
12 clean:
13 $(RM) testusb ffs-test
This page took 0.031069 seconds and 5 git commands to generate.