tmk_keyboard/Makefile.pjrc

22 lines
344 B
Makefile
Raw Normal View History

2011-02-12 10:15:51 -05:00
OPT_DEFS += -DHOST_PJRC
2011-02-08 10:03:58 -05:00
SRC = usb_keyboard.c \
usb_debug.c \
usb.c \
jump_bootloader.c
SRC += $(TARGET_SRC)
2011-02-12 10:15:51 -05:00
# C source file search path
VPATH = $(TARGET_DIR):$(COMMON_DIR):$(COMMON_DIR)/pjrc
2011-02-08 10:03:58 -05:00
# Option modules
ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
SRC += usb_mouse.c
endif
ifdef USB_EXTRA_ENABLE
SRC += usb_extra.c
endif