projects
/
pub
/
lufa.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/lufa.git]
/
BuildTests
/
SingleUSBModeTest
/
makefile
diff --git
a/BuildTests/SingleUSBModeTest/makefile
b/BuildTests/SingleUSBModeTest/makefile
index
98e2d25
..
096d4b3
100644
(file)
--- a/
BuildTests/SingleUSBModeTest/makefile
+++ b/
BuildTests/SingleUSBModeTest/makefile
@@
-12,6
+12,9
@@
# all module headers in a simple C and C++
\r
# application.
\r
\r
# all module headers in a simple C and C++
\r
# application.
\r
\r
+# Path to the LUFA library core
\r
+LUFA_PATH = ../../LUFA/
\r
+
\r
all: begin compile clean end
\r
\r
begin:
\r
all: begin compile clean end
\r
\r
begin:
\r
@@
-41,4
+44,4
@@
clean:
.PHONY: begin end compile clean
\r
\r
# Include LUFA build script makefiles
\r
.PHONY: begin end compile 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