X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/44f348e7ffdcd899d87a0ae4a8aacabf67672e9f..c7344c22ac700dacf55a8dc729111dd7781c5fed:/BuildTests/BoardDriverTest/makefile diff --git a/BuildTests/BoardDriverTest/makefile b/BuildTests/BoardDriverTest/makefile index aca8d5109..252b3f880 100644 --- a/BuildTests/BoardDriverTest/makefile +++ b/BuildTests/BoardDriverTest/makefile @@ -1,6 +1,6 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2011. +# Copyright (C) Dean Camera, 2012. # # dean [at] fourwalledcubicle [dot] com # www.lufa-lib.org @@ -29,30 +29,38 @@ makeboardlist: @grep "BOARD_" $(LUFA_ROOT_PATH)/LUFA/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt testboards: - echo "%:" > BuildMakefile - @while read line; \ - do \ - build_cfg=`grep "$$line " BoardDeviceMap.cfg | cut -d'=' -f2-`; \ - \ - build_board=$$line; \ - build_arch=`echo $$build_cfg | cut -d':' -f1 | cut -d' ' -f1`; \ - build_mcu=`echo $$build_cfg | cut -d':' -f2 | cut -d' ' -f2`; \ - \ - if ( test -z "$$build_cfg" ); then \ - echo "No matching information set for board $$line"; \ - else \ - printf "\tmake -f makefile.$$build_arch clean\n" >> BuildMakefile; \ - printf "\tmake -f makefile.$$build_arch MCU=$$build_mcu BOARD=$$build_board\n" >> BuildMakefile; \ - fi; \ + @echo "buildtest:" > BuildMakefile + + @while read line; \ + do \ + build_cfg=`grep "$$line " BoardDeviceMap.cfg | grep -v "#" | cut -d'=' -f2- | sed 's/ //g'`; \ + \ + build_board=$$line; \ + build_arch=`echo $$build_cfg | cut -d':' -f1`; \ + build_mcu=`echo $$build_cfg | cut -d':' -f2`; \ + \ + if ( test -z "$$build_cfg" ); then \ + echo "No matching information set for board $$build_board"; \ + else \ + echo "Found board configuration for $$build_board - $$build_arch, $$build_mcu"; \ + \ + printf "\t@echo Building dummy project for $$build_board...\n" >> BuildMakefile; \ + printf "\t$(MAKE) -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 - $(MAKE) -f BuildMakefile all + + $(MAKE) -f BuildMakefile buildtest 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 + +.PHONY: all begin end makeboardlist testboards clean + +# Include LUFA build script makefiles +include $(LUFA_ROOT_PATH)/LUFA/Build/lufa.core.in