X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/082537f5bd6b0620ff9b712b9370e5d0c01a61e3..6e29655b5473c6f8235b72654f9aae9cfeb9b078:/BuildTests/BoardDriverTest/makefile diff --git a/BuildTests/BoardDriverTest/makefile b/BuildTests/BoardDriverTest/makefile index 6ed32a47e..43256202e 100644 --- a/BuildTests/BoardDriverTest/makefile +++ b/BuildTests/BoardDriverTest/makefile @@ -1,66 +1,66 @@ -# -# LUFA Library -# Copyright (C) Dean Camera, 2012. -# -# dean [at] fourwalledcubicle [dot] com -# www.lufa-lib.org -# - -# Makefile for the board driver build test. This -# test attempts to build a dummy project with all -# possible board targets using their respective -# compiler. - -# Path to the LUFA library core -LUFA_PATH = ../../LUFA/ - - -all: begin makeboardlist testboards clean end - -begin: - @echo Executing build test "BoardDriverTest". - @echo - -end: - @echo Build test "BoardDriverTest" complete. - @echo - -makeboardlist: - @grep "BOARD_" $(patsubst %/,%,$(LUFA_PATH))/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt - -testboards: - @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 buildtest - -clean: - rm -f BuildMakefile - rm -f BoardList.txt - $(MAKE) -s -f makefile.test clean ARCH=AVR8 MCU=at90usb1287 - $(MAKE) -s -f makefile.test clean ARCH=XMEGA MCU=atxmega128a1u - $(MAKE) -s -f makefile.test clean ARCH=UC3 MCU=uc3a0256 - -%: - -.PHONY: all begin end makeboardlist testboards clean - -# Include LUFA build script makefiles -include $(LUFA_PATH)/Build/lufa.core.in +# +# LUFA Library +# Copyright (C) Dean Camera, 2012. +# +# dean [at] fourwalledcubicle [dot] com +# www.lufa-lib.org +# + +# Makefile for the board driver build test. This +# test attempts to build a dummy project with all +# possible board targets using their respective +# compiler. + +# Path to the LUFA library core +LUFA_PATH = ../../LUFA/ + + +all: begin makeboardlist testboards clean end + +begin: + @echo Executing build test "BoardDriverTest". + @echo + +end: + @echo Build test "BoardDriverTest" complete. + @echo + +makeboardlist: + @grep "BOARD_" $(patsubst %/,%,$(LUFA_PATH))/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt + +testboards: + @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 buildtest + +clean: + rm -f BuildMakefile + rm -f BoardList.txt + $(MAKE) -s -f makefile.test clean ARCH=AVR8 MCU=at90usb1287 + $(MAKE) -s -f makefile.test clean ARCH=XMEGA MCU=atxmega128a1u + $(MAKE) -s -f makefile.test clean ARCH=UC3 MCU=uc3a0256 + +%: + +.PHONY: all begin end makeboardlist testboards clean + +# Include LUFA build script makefiles +include $(LUFA_PATH)/Build/lufa.core.in