Get rid of the redundant ATTR_NEVER_INLINE macro which translated to the same as...
[pub/USBasp.git] / BuildTests / BoardDriverTest / makefile
index 4325620..00dc983 100644 (file)
@@ -1,6 +1,6 @@
 #
 #             LUFA Library
-#     Copyright (C) Dean Camera, 2012.
+#     Copyright (C) Dean Camera, 2013.
 #
 #  dean [at] fourwalledcubicle [dot] com
 #           www.lufa-lib.org
 # 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
 
@@ -45,7 +47,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 "\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
         
@@ -54,13 +56,13 @@ testboards:
 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
+       $(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