diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-23 17:02:15 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-23 17:02:15 +0000 |
commit | 43e10d666b502f1918051bbecdaf7d181040fe00 (patch) | |
tree | 547e85e69b4d33baf790c2bc7165c66d0ed1807d /BuildTests/ModuleTest | |
parent | 90b6bf9e256eea7bb5e493b8f871e2e9f2e1e06d (diff) | |
download | lufa-43e10d666b502f1918051bbecdaf7d181040fe00.tar.gz lufa-43e10d666b502f1918051bbecdaf7d181040fe00.tar.bz2 lufa-43e10d666b502f1918051bbecdaf7d181040fe00.zip |
Clean up BuildTest and Maintenance makefiles - use non-recursively evaluated make variables.
Diffstat (limited to 'BuildTests/ModuleTest')
-rw-r--r-- | BuildTests/ModuleTest/makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/BuildTests/ModuleTest/makefile b/BuildTests/ModuleTest/makefile index b997b3513..1d243ddc6 100644 --- a/BuildTests/ModuleTest/makefile +++ b/BuildTests/ModuleTest/makefile @@ -13,15 +13,15 @@ # application. # Path to the LUFA library core -LUFA_PATH = ../../LUFA/ +LUFA_PATH := ../../LUFA/ # List of device families per architecture, one device per architecture sub-family -AVR8_FAMILIES = at90usb1287 at90usb1286 atmega16u4 atmega16u2 at90usb162 -XMEGA_FAMILIES = atxmega128a1u atxmega128a3u atxmega256a3bu atxmega128a4u atxmega128b1 atxmega128b3 atxmega128c3 atxmega32c4 -UC3_FAMILIES = uc3a0256 uc3a1256 uc3a3256 uc3a4256 uc3b0256 uc3b1256 +AVR8_FAMILIES := at90usb1287 at90usb1286 atmega16u4 atmega16u2 at90usb162 +XMEGA_FAMILIES := atxmega128a1u atxmega128a3u atxmega256a3bu atxmega128a4u atxmega128b1 atxmega128b3 atxmega128c3 atxmega32c4 +UC3_FAMILIES := uc3a0256 uc3a1256 uc3a3256 uc3a4256 uc3b0256 uc3b1256 # List of all device families, with a family postfix -DEVICE_FAMILIES = $(AVR8_FAMILIES:%=%.avr8) $(XMEGA_FAMILIES:%=%.xmega) $(UC3_FAMILIES:%=%.uc3) +DEVICE_FAMILIES := $(AVR8_FAMILIES:%=%.avr8) $(XMEGA_FAMILIES:%=%.xmega) $(UC3_FAMILIES:%=%.uc3) all: begin $(DEVICE_FAMILIES) clean end |