|
|
@ -1,16 +1,17 @@
|
|
|
|
LUFA_DIR = protocol/lufa
|
|
|
|
LUFA_DIR = protocol/lufa
|
|
|
|
|
|
|
|
|
|
|
|
# Path to the LUFA library
|
|
|
|
# Path to the LUFA library
|
|
|
|
LUFA_PATH ?= $(LUFA_DIR)/LUFA-git
|
|
|
|
LUFA_PATH = $(LIB_PATH)/lufa
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Create the LUFA source path variables by including the LUFA makefile
|
|
|
|
# Create the LUFA source path variables by including the LUFA makefile
|
|
|
|
ifneq (, $(wildcard $(TMK_PATH)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk))
|
|
|
|
ifneq (, $(wildcard $(LUFA_PATH)/LUFA/Build/lufa_sources.mk))
|
|
|
|
# New build system from 20120730
|
|
|
|
# New build system from 20120730
|
|
|
|
LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA
|
|
|
|
LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA
|
|
|
|
include $(TMK_PATH)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk
|
|
|
|
DMBS_LUFA_PATH = $(LUFA_PATH)/LUFA/Build/LUFA
|
|
|
|
|
|
|
|
include $(LUFA_PATH)/LUFA/Build/lufa_sources.mk
|
|
|
|
else
|
|
|
|
else
|
|
|
|
include $(TMK_PATH)/$(LUFA_PATH)/LUFA/makefile
|
|
|
|
include $(LUFA_PATH)/LUFA/makefile
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
LUFA_SRC = lufa.c \
|
|
|
|
LUFA_SRC = lufa.c \
|
|
|
@ -49,7 +50,7 @@ SRC += $(LUFA_SRC)
|
|
|
|
|
|
|
|
|
|
|
|
# Search Path
|
|
|
|
# Search Path
|
|
|
|
VPATH += $(TMK_PATH)/$(LUFA_DIR)
|
|
|
|
VPATH += $(TMK_PATH)/$(LUFA_DIR)
|
|
|
|
VPATH += $(TMK_PATH)/$(LUFA_PATH)
|
|
|
|
VPATH += $(LUFA_PATH)
|
|
|
|
|
|
|
|
|
|
|
|
# Option modules
|
|
|
|
# Option modules
|
|
|
|
#ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
|
|
|
|
#ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
|
|
|
|