projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Correct BuildTest makefiles to use LUFA_PATH rather than LUFA_ROOT_PATH.
[pub/USBasp.git]
/
BuildTests
/
BoardDriverTest
/
makefile
diff --git
a/BuildTests/BoardDriverTest/makefile
b/BuildTests/BoardDriverTest/makefile
index
252b3f8
..
54afa57
100644
(file)
--- a/
BuildTests/BoardDriverTest/makefile
+++ b/
BuildTests/BoardDriverTest/makefile
@@
-11,8
+11,8
@@
# possible board targets using their respective
\r
# compiler.
\r
\r
# possible board targets using their respective
\r
# compiler.
\r
\r
-# Path to the
root of the LUFA tree to scan
\r
-LUFA_
ROOT_PATH = ../..
\r
+# Path to the
LUFA library core
\r
+LUFA_
PATH = ../../LUFA/
\r
\r
\r
all: begin makeboardlist testboards clean end
\r
\r
\r
all: begin makeboardlist testboards clean end
\r
@@
-26,7
+26,7
@@
end:
@echo
\r
\r
makeboardlist:
\r
@echo
\r
\r
makeboardlist:
\r
- @grep "BOARD_" $(
LUFA_ROOT_PATH)/LUFA
/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt
\r
+ @grep "BOARD_" $(
patsubst %/,%,$(LUFA_PATH))
/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt
\r
\r
testboards:
\r
@echo "buildtest:" > BuildMakefile
\r
\r
testboards:
\r
@echo "buildtest:" > BuildMakefile
\r
@@
-63,4
+63,4
@@
clean:
.PHONY: all begin end makeboardlist testboards clean
\r
\r
# Include LUFA build script makefiles
\r
.PHONY: all begin end makeboardlist testboards clean
\r
\r
# Include LUFA build script makefiles
\r
-include $(LUFA_
ROOT_PATH)/LUFA
/Build/lufa.core.in
\r
+include $(LUFA_
PATH)
/Build/lufa.core.in
\r