summaryrefslogtreecommitdiff
path: root/n/avr/modules/twi/slave/test/Makefile
diff options
context:
space:
mode:
authorschodet2005-07-22 21:30:39 +0000
committerschodet2005-07-22 21:30:39 +0000
commit0f9db44ec7e0d92caeeeab4347f8aed8c5a978fe (patch)
tree46a7eb972f5eef44372931456a5b319f369b0b71 /n/avr/modules/twi/slave/test/Makefile
parent4cd683f2accac9eedcf51641bea121d217ee8af2 (diff)
Ajout de TWI, migration vers le nouveau système de makefiles.
Diffstat (limited to 'n/avr/modules/twi/slave/test/Makefile')
-rw-r--r--n/avr/modules/twi/slave/test/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/n/avr/modules/twi/slave/test/Makefile b/n/avr/modules/twi/slave/test/Makefile
new file mode 100644
index 0000000..219ae62
--- /dev/null
+++ b/n/avr/modules/twi/slave/test/Makefile
@@ -0,0 +1,21 @@
+BASE = ../../../..
+AVR_PROGS = test_twi_slave
+test_twi_slave_SOURCES = test_twi_slave.c
+DOC =
+EXTRACTDOC =
+MODULES = uart twi/slave
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega8
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+DEFS =
+LIBS =
+
+# Test compilations.
+TEST_MCU = atmega8535 atmega128
+TEST_CONFIGFILES = avrconfig.h
+
+include $(BASE)/make/Makefile.gen