You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
306 B
Makefile
22 lines
306 B
Makefile
OPT_DEFS += -DHOST_PJRC
|
|
|
|
SRC += pjrc.c \
|
|
usb_keyboard.c \
|
|
usb_debug.c \
|
|
usb.c \
|
|
jump_bootloader.c
|
|
|
|
|
|
# Search Path
|
|
VPATH += $(COMMON_DIR):$(COMMON_DIR)/pjrc
|
|
|
|
|
|
# Option modules
|
|
ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
|
|
SRC += usb_mouse.c
|
|
endif
|
|
|
|
ifdef EXTRAKEY_ENABLE
|
|
SRC += usb_extra.c
|
|
endif
|