]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/examples/libusb20/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / share / examples / libusb20 / Makefile
1 # $FreeBSD$
2 TARGETS=        bulk control
3
4 all: $(TARGETS)
5
6 bulk: bulk.o aux.o
7         $(CC) $(CFLAGS) -o bulk bulk.o aux.o -lusb
8
9 control: control.o aux.o
10         $(CC) $(CFLAGS) -o control control.o aux.o -lusb
11
12 clean:
13         rm -f $(TARGETS) *.o *~