]> Git Repo - linux.git/blob - tools/usb/Makefile
panic: release stale console lock to always get the logbuf printed out
[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 -I../include
7 LDFLAGS = $(PTHREAD_LIBS)
8
9 all: testusb ffs-test
10 %: %.c
11         $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
12
13 clean:
14         $(RM) testusb ffs-test
This page took 0.029861 seconds and 4 git commands to generate.