diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-03 20:06:21 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-03 20:06:21 +0000 |
commit | 60a2147a511e5ed9719d43d2570ba66335745de4 (patch) | |
tree | f9994b1507ebf9961dbabacef028601f0e963051 /BuildTests/BoardDriverTest/makefile | |
parent | c7344c22ac700dacf55a8dc729111dd7781c5fed (diff) | |
download | lufa-60a2147a511e5ed9719d43d2570ba66335745de4.tar.gz lufa-60a2147a511e5ed9719d43d2570ba66335745de4.tar.bz2 lufa-60a2147a511e5ed9719d43d2570ba66335745de4.zip |
Correct BuildTest makefiles to use LUFA_PATH rather than LUFA_ROOT_PATH.
Diffstat (limited to 'BuildTests/BoardDriverTest/makefile')
-rw-r--r-- | BuildTests/BoardDriverTest/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/BuildTests/BoardDriverTest/makefile b/BuildTests/BoardDriverTest/makefile index 252b3f880..54afa5755 100644 --- a/BuildTests/BoardDriverTest/makefile +++ b/BuildTests/BoardDriverTest/makefile @@ -11,8 +11,8 @@ # possible board targets using their respective
# compiler.
-# Path to the root of the LUFA tree to scan
-LUFA_ROOT_PATH = ../..
+# Path to the LUFA library core
+LUFA_PATH = ../../LUFA/
all: begin makeboardlist testboards clean end
@@ -26,7 +26,7 @@ end: @echo
makeboardlist:
- @grep "BOARD_" $(LUFA_ROOT_PATH)/LUFA/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt
+ @grep "BOARD_" $(patsubst %/,%,$(LUFA_PATH))/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt
testboards:
@echo "buildtest:" > BuildMakefile
@@ -63,4 +63,4 @@ clean: .PHONY: all begin end makeboardlist testboards clean
# Include LUFA build script makefiles
-include $(LUFA_ROOT_PATH)/LUFA/Build/lufa.core.in
+include $(LUFA_PATH)/Build/lufa.core.in
|