xref: /freebsd/share/examples/libusb20/Makefile (revision 2578c12e39a4009e1b0e0183e0273bab80a1fbb9)
13b9676efSJoerg Wunsch# $FreeBSD$
23b9676efSJoerg WunschTARGETS=	bulk control
3*2578c12eSHans Petter SelaskyCFLAGS+=	-Wall
43b9676efSJoerg Wunsch
53b9676efSJoerg Wunschall: $(TARGETS)
63b9676efSJoerg Wunsch
7*2578c12eSHans Petter Selaskybulk: bulk.o util.o
8*2578c12eSHans Petter Selasky	$(CC) $(CFLAGS) -o bulk bulk.o util.o -lusb
93b9676efSJoerg Wunsch
10*2578c12eSHans Petter Selaskycontrol: control.o util.o
11*2578c12eSHans Petter Selasky	$(CC) $(CFLAGS) -o control control.o util.o -lusb
123b9676efSJoerg Wunsch
133b9676efSJoerg Wunschclean:
143b9676efSJoerg Wunsch	rm -f $(TARGETS) *.o *~
15