]> Git Repo - linux.git/blame - tools/usb/Makefile
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux.git] / tools / usb / Makefile
CommitLineData
4f22ce70
DB
1# Makefile for USB tools
2
3CC = $(CROSS_COMPILE)gcc
4PTHREAD_LIBS = -lpthread
5WARNINGS = -Wall -Wextra
24fa9a9d 6CFLAGS = $(WARNINGS) -g $(PTHREAD_LIBS) -I../include
4f22ce70
DB
7
8all: testusb ffs-test
9%: %.c
10 $(CC) $(CFLAGS) -o $@ $^
11
12clean:
13 $(RM) testusb ffs-test
This page took 0.129726 seconds and 4 git commands to generate.