diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-08-26 17:27:52 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-08-26 17:27:52 -0400 |
commit | d63c2e3995ae464c4266a7bd348ffb2f43cf7377 (patch) | |
tree | 4c75d31661a95ecd6cc712225e148ebebaf92d10 | |
parent | 9b46f4021e6c96ed4697924a90a8b2b6dd0b0acc (diff) |
fixed lufa git stuff
-rw-r--r-- | protocol/lufa.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocol/lufa.mk b/protocol/lufa.mk index 088fd377e0..5dbb74ffc2 100644 --- a/protocol/lufa.mk +++ b/protocol/lufa.mk @@ -1,11 +1,11 @@ LUFA_DIR = protocol/lufa # Path to the LUFA library -#ifeq (, $(wildcard $(TOP_DIR)/$(LUFA_DIR)/LUFA-git/LUFA/Version.h)) -# LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730 -#else +ifeq (, $(wildcard $(TOP_DIR)/$(LUFA_DIR)/LUFA-git/LUFA/Version.h)) + LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730 +else LUFA_PATH ?= $(LUFA_DIR)/LUFA-git -#endif +endif # Create the LUFA source path variables by including the LUFA makefile |