X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/67a8f54a6e05d052f20de16c5597dc37d554a7c6..40e1caa2da06d6d4699d5dc3dafb3d34b81f23f7:/BuildTests/BoardDriverTest/makefile diff --git a/BuildTests/BoardDriverTest/makefile b/BuildTests/BoardDriverTest/makefile index de49759a7..6ede0d2da 100644 --- a/BuildTests/BoardDriverTest/makefile +++ b/BuildTests/BoardDriverTest/makefile @@ -1,6 +1,6 @@ # # LUFA Library -# Copyright (C) Dean Camera, 2012. +# Copyright (C) Dean Camera, 2015. # # dean [at] fourwalledcubicle [dot] com # www.lufa-lib.org @@ -12,8 +12,10 @@ # compiler. # Path to the LUFA library core -LUFA_PATH = ../../LUFA/ +LUFA_PATH := ../../LUFA/ +# Build test cannot be run with multiple parallel jobs +.NOTPARALLEL: all: begin makeboardlist testboards clean end @@ -27,10 +29,10 @@ end: 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'`; \ @@ -45,22 +47,22 @@ testboards: 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; \ + printf "\t$(MAKE) -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 BOARD=NONE ARCH=AVR8 MCU=at90usb1287 - $(MAKE) -s -f makefile.test clean BOARD=NONE ARCH=XMEGA MCU=atxmega128a1u - $(MAKE) -s -f makefile.test clean BOARD=NONE ARCH=UC3 MCU=uc3a0256 + $(MAKE) -f makefile.test clean BOARD=NONE ARCH=AVR8 MCU=at90usb1287 + $(MAKE) -f makefile.test clean BOARD=NONE ARCH=XMEGA MCU=atxmega128a1u + $(MAKE) -f makefile.test clean BOARD=NONE ARCH=UC3 MCU=uc3a0256 %: .PHONY: all begin end makeboardlist testboards clean # Include LUFA build script makefiles -include $(LUFA_PATH)/Build/lufa.core.in +include $(LUFA_PATH)/Build/lufa_core.mk