diff options
Diffstat (limited to 'protocol/lufa.mk')
-rw-r--r-- | protocol/lufa.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/protocol/lufa.mk b/protocol/lufa.mk index 10a922f90..48ce9ae87 100644 --- a/protocol/lufa.mk +++ b/protocol/lufa.mk | |||
@@ -1,8 +1,12 @@ | |||
1 | LUFA_DIR = protocol/lufa | 1 | LUFA_DIR = protocol/lufa |
2 | 2 | ||
3 | # Path to the LUFA library | 3 | # Path to the LUFA library |
4 | LUFA_PATH ?= protocol/lufa/LUFA-120730 | 4 | ifeq (, $(wildcard $(TOP_DIR)/$(LUFA_DIR)/LUFA-git)) |
5 | #LUFA_PATH ?= protocol/lufa/LUFA-130901 | 5 | LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730 |
6 | else | ||
7 | LUFA_PATH ?= $(LUFA_DIR)/LUFA-git | ||
8 | endif | ||
9 | |||
6 | 10 | ||
7 | # Create the LUFA source path variables by including the LUFA makefile | 11 | # Create the LUFA source path variables by including the LUFA makefile |
8 | ifneq (, $(wildcard $(TOP_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk)) | 12 | ifneq (, $(wildcard $(TOP_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk)) |