aboutsummaryrefslogtreecommitdiff
path: root/BuildTests/BoardDriverTest/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-02 10:46:25 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-02 10:46:25 +0000
commit1b177ee480895502f07e1c8d137949eda82a98cf (patch)
treeafdaa656eee10b8c064b8a3ea69d100d60ddaeb1 /BuildTests/BoardDriverTest/makefile
parentcb0d5fcd34f6b2e0c7d03dfa30bb28f1f2451466 (diff)
Replace architecture specific makefiles in the BuildTests with the new common build system makefiles.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2267 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'BuildTests/BoardDriverTest/makefile')
-rw-r--r--BuildTests/BoardDriverTest/makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/BuildTests/BoardDriverTest/makefile b/BuildTests/BoardDriverTest/makefile
index cb1ed62b..1477205f 100644
--- a/BuildTests/BoardDriverTest/makefile
+++ b/BuildTests/BoardDriverTest/makefile
@@ -45,8 +45,7 @@ testboards:
echo "Found board configuration for $$build_board - $$build_arch, $$build_mcu"; \
\
printf "\t@echo Building dummy project for $$build_board...\n" >> BuildMakefile; \
- printf "\tmake -s -f makefile.%s clean\n" $$build_arch >> BuildMakefile; \
- printf "\tmake -s -f makefile.%s MCU=%s BOARD=%s elf\n\n" $$build_arch $$build_mcu $$build_board >> BuildMakefile; \
+ printf "\tmake -s -f makefile.test clean elf MCU=%s ARCH=%s BOARD=%s\n\n" $$build_mcu $$build_arch $$build_board >> BuildMakefile; \
fi; \
done < BoardList.txt
@@ -55,9 +54,9 @@ testboards:
clean:
rm -f BuildMakefile
rm -f BoardList.txt
- $(MAKE) -f makefile.avr8 clean
- $(MAKE) -f makefile.xmega clean
- $(MAKE) -f makefile.uc3 clean
+ $(MAKE) -s -f makefile.test clean ARCH=AVR8
+ $(MAKE) -s -f makefile.test clean ARCH=XMEGA
+ $(MAKE) -s -f makefile.test clean ARCH=UC3
%:
\ No newline at end of file