Correct BuildTest makefiles to use LUFA_PATH rather than LUFA_ROOT_PATH.

This commit is contained in:
Dean Camera 2012-06-03 20:06:21 +00:00
parent c7344c22ac
commit 60a2147a51
5 changed files with 22 additions and 16 deletions

View file

@ -12,6 +12,9 @@
# all module headers in a simple C and C++
# application.
# Path to the LUFA library core
LUFA_PATH = ../../LUFA/
all: begin compile clean end
begin:
@ -41,4 +44,4 @@ clean:
.PHONY: begin end compile clean
# Include LUFA build script makefiles
include $(LUFA_ROOT_PATH)/LUFA/Build/lufa.core.in
include $(LUFA_PATH)/Build/lufa.core.in