diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 10:46:25 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 10:46:25 +0000 |
| commit | 1b177ee480895502f07e1c8d137949eda82a98cf (patch) | |
| tree | afdaa656eee10b8c064b8a3ea69d100d60ddaeb1 /BuildTests/ModuleTest/makefile | |
| parent | cb0d5fcd34f6b2e0c7d03dfa30bb28f1f2451466 (diff) | |
Replace architecture specific makefiles in the BuildTests with the new common build system makefiles.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2267 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'BuildTests/ModuleTest/makefile')
| -rw-r--r-- | BuildTests/ModuleTest/makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/BuildTests/ModuleTest/makefile b/BuildTests/ModuleTest/makefile index 6811e1a2..170c9301 100644 --- a/BuildTests/ModuleTest/makefile +++ b/BuildTests/ModuleTest/makefile @@ -37,21 +37,18 @@ end: @echo
%.avr8:
- $(MAKE) -s -f makefile.avr8 clean
- $(MAKE) -s -f makefile.avr8 all MCU=$(@:%.avr8=%) elf
+ $(MAKE) -s -f makefile.test clean elf ARCH=AVR8 MCU=$(@:%.avr8=%)
%.xmega:
- $(MAKE) -s -f makefile.xmega clean
- $(MAKE) -s -f makefile.xmega all MCU=$(@:%.xmega=%) elf
+ $(MAKE) -s -f makefile.test clean elf ARCH=XMEGA MCU=$(@:%.xmega=%)
%.uc3:
- $(MAKE) -s -f makefile.uc3 clean
- $(MAKE) -s -f makefile.uc3 all MCU=$(@:%.uc3=%) elf
+ $(MAKE) -s -f makefile.test clean elf ARCH=UC3 MCU=$(@:%.uc3=%)
clean:
- $(MAKE) -s -f makefile.avr8 clean
- $(MAKE) -s -f makefile.xmega clean
- $(MAKE) -s -f makefile.uc3 clean
+ $(MAKE) -s -f makefile.test clean ARCH=AVR8
+ $(MAKE) -s -f makefile.test clean ARCH=XMEGA
+ $(MAKE) -s -f makefile.test clean ARCH=UC3
%:
\ No newline at end of file |
