X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/e24993c13aa30115b5ef5e4877dbb610efd9626e..32f2d59bc0aec1e7c6b88301e3bd7a58ddc0c8c8:/BuildTests/BoardDriverTest/makefile diff --git a/BuildTests/BoardDriverTest/makefile b/BuildTests/BoardDriverTest/makefile index 1d1be8687..54afa5755 100644 --- a/BuildTests/BoardDriverTest/makefile +++ b/BuildTests/BoardDriverTest/makefile @@ -11,8 +11,8 @@ # possible board targets using their respective # compiler. -# Path to the root of the LUFA tree to scan -LUFA_ROOT_PATH = ../.. +# Path to the LUFA library core +LUFA_PATH = ../../LUFA/ all: begin makeboardlist testboards clean end @@ -26,7 +26,7 @@ end: @echo makeboardlist: - @grep "BOARD_" $(LUFA_ROOT_PATH)/LUFA/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt + @grep "BOARD_" $(patsubst %/,%,$(LUFA_PATH))/Common/BoardTypes.h | cut -d'#' -f2 | cut -d' ' -f2 | grep "BOARD_" > BoardList.txt testboards: @echo "buildtest:" > BuildMakefile @@ -59,4 +59,8 @@ clean: $(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_PATH)/Build/lufa.core.in