]> git.gir.st - tmk_keyboard.git/blob - Makefile.pjrc
added protocol stack: pjrc, vusb
[tmk_keyboard.git] / Makefile.pjrc
1 # Following variables need to be set in <target>/Makefile:
2 # TARGET
3 # COMMON_DIR
4 # TARGET_DIR
5 # TARGET_SRC
6 # MCU
7 # F_CPU
8
9
10 # List C source files here. (C dependencies are automatically generated.)
11 SRC = usb_keyboard.c \
12 usb_debug.c \
13 usb.c \
14 jump_bootloader.c
15 SRC += $(TARGET_SRC)
16
17 # Option modules
18 ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
19 SRC += usb_mouse.c
20 endif
21
22 ifdef USB_EXTRA_ENABLE
23 SRC += usb_extra.c
24 endif
25
26
27 # C source file search path
28 VPATH = $(TARGET_DIR):$(COMMON_DIR):$(COMMON_DIR)/pjrc
Imprint / Impressum