~ruther/qmk_firmware

ref: e3a940026ead4a3b4d0a9f536bd4cc5153e4140b qmk_firmware/tmk_core/protocol/pjrc.mk -rw-r--r-- 609 bytes
e3a94002 — Markus Weimar Improve mouse keys docs and constant speed mode 7 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
PJRC_DIR = protocol/pjrc

SRC +=	$(PJRC_DIR)/main.c \
	$(PJRC_DIR)/pjrc.c \
	$(PJRC_DIR)/usb_keyboard.c \
	$(PJRC_DIR)/usb_debug.c \
	$(PJRC_DIR)/usb.c

# Option modules
ifdef MOUSEKEY_ENABLE
    SRC += $(PJRC_DIR)/usb_mouse.c
endif

ifdef ADB_MOUSE_ENABLE
    SRC += $(PJRC_DIR)/usb_mouse.c
endif

ifdef PS2_MOUSE_ENABLE
    SRC += $(PJRC_DIR)/usb_mouse.c
endif

ifdef EXTRAKEY_ENABLE
    SRC += $(PJRC_DIR)/usb_extra.c
endif


ifdef POINTING_DEVICE_ENABLE
    SRC += $(PJRC_DIR)/usb_mouse.c
endif

# Search Path
VPATH += $(TMK_DIR)/$(PJRC_DIR)

# This indicates using LUFA stack
OPT_DEFS += -DPROTOCOL_PJRC