xref: /freebsd/share/examples/libusb20/Makefile (revision 3b9676efb53cd0386228b1a11b69097e9d22e405)
1*3b9676efSJoerg Wunsch# $FreeBSD$
2*3b9676efSJoerg WunschTARGETS=	bulk control
3*3b9676efSJoerg Wunsch
4*3b9676efSJoerg Wunschall: $(TARGETS)
5*3b9676efSJoerg Wunsch
6*3b9676efSJoerg Wunschbulk: bulk.o aux.o
7*3b9676efSJoerg Wunsch	$(CC) $(CFLAGS) -o bulk bulk.o aux.o -lusb
8*3b9676efSJoerg Wunsch
9*3b9676efSJoerg Wunschcontrol: control.o aux.o
10*3b9676efSJoerg Wunsch	$(CC) $(CFLAGS) -o control control.o aux.o -lusb
11*3b9676efSJoerg Wunsch
12*3b9676efSJoerg Wunschclean:
13*3b9676efSJoerg Wunsch	rm -f $(TARGETS) *.o *~
14