1
2CFLAGS += -Wall
3OBJS = tusb_ki.o user_tusb.o
4
5test_usb: $(OBJS)
6	$(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@
7
8clean:
9	rm -f $(OBJS) test_usb
10