tools: usb: aio example applications
[deliverable/linux.git] / tools / usb / ffs-aio-example / simple / host_app / Makefile
1 CC = gcc
2 LIBUSB_CFLAGS = $(shell pkg-config --cflags libusb-1.0)
3 LIBUSB_LIBS = $(shell pkg-config --libs libusb-1.0)
4 WARNINGS = -Wall -Wextra
5 CFLAGS = $(LIBUSB_CFLAGS) $(WARNINGS)
6 LDFLAGS = $(LIBUSB_LIBS)
7
8 all: test
9 %: %.c
10 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
11
12 clean:
13 $(RM) test
This page took 0.030567 seconds and 5 git commands to generate.