summaryrefslogtreecommitdiff
path: root/n/avr/modules/uart/Makefile
diff options
context:
space:
mode:
authorschodet2005-06-27 21:48:26 +0000
committerschodet2005-06-27 21:48:26 +0000
commit13f01c42208de5f77acda5ea39f0f69061b87f35 (patch)
tree470aeacaaa4b449a4375bcebfb8373c67198c6b2 /n/avr/modules/uart/Makefile
parentd237184f11ebdf3147e03bd297f16797a8e990ca (diff)
Ajout de uart.
Diffstat (limited to 'n/avr/modules/uart/Makefile')
-rw-r--r--n/avr/modules/uart/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/n/avr/modules/uart/Makefile b/n/avr/modules/uart/Makefile
new file mode 100644
index 0000000..4546be6
--- /dev/null
+++ b/n/avr/modules/uart/Makefile
@@ -0,0 +1,17 @@
+BASE = ../..
+PROGS = test_uart
+test_uart_SOURCES = test_uart.c
+DOC = uart.html
+EXTRACTDOC = uart.h avrconfig.h
+MODULES = uart
+CONFIGFILE = test_avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega8
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+DEFS =
+LIBS =
+
+include $(BASE)/make/Makefile.gen