]> Git Repo - linux.git/blob - tools/usb/Makefile
Merge tag 'acpi-5.7-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[linux.git] / tools / usb / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for USB tools
3
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.033525 seconds and 4 git commands to generate.