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