summaryrefslogtreecommitdiff
path: root/n/avr/modules/uart/test/Makefile
diff options
context:
space:
mode:
authorschodet2005-07-05 18:39:06 +0000
committerschodet2005-07-05 18:39:06 +0000
commitdc1a4f2bdbb5723fd0b5a19aa533211b34c06adb (patch)
tree06ecafe7e040e62a379497b3bd386d171f6e14da /n/avr/modules/uart/test/Makefile
parent8837b88c9d9cce383fd1e3467abadef51cbc5b1c (diff)
Fix: echo sur l'uart host.
Add: mode de compilation de test. Add: erreurs à la termios. Fix: détails...
Diffstat (limited to 'n/avr/modules/uart/test/Makefile')
-rw-r--r--n/avr/modules/uart/test/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/n/avr/modules/uart/test/Makefile b/n/avr/modules/uart/test/Makefile
new file mode 100644
index 0000000..3f162fc
--- /dev/null
+++ b/n/avr/modules/uart/test/Makefile
@@ -0,0 +1,22 @@
+BASE = ../../..
+PROGS = test_uart
+test_uart_SOURCES = test_uart.c
+DOC =
+EXTRACTDOC =
+MODULES = uart utils
+CONFIGFILE = avrconfig_ring.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega8
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+DEFS =
+LIBS =
+
+# Test compilations.
+TEST_MCU = atmega8 atmega8535 atmega128
+TEST_CONFIGFILES = avrconfig_ring.h avrconfig_polling.h avrconfig_twoports.h
+avrconfig_twoports_MCU = atmega128
+
+include $(BASE)/make/Makefile.gen