summaryrefslogtreecommitdiff
path: root/n/lcd/src/Makefile
diff options
context:
space:
mode:
authorleblanc2006-03-12 14:50:21 +0000
committerleblanc2006-03-12 14:50:21 +0000
commit5641bdcf875ea66ef16a5cd718b87ba3af920d5d (patch)
tree2c93a8243a7de01f33de0784e2ac5b48f8fb04b6 /n/lcd/src/Makefile
parent547d4bd275b05bc418482b6d14a44350ba8292dc (diff)
On a fait l'affichage LCD en 8 bits
Diffstat (limited to 'n/lcd/src/Makefile')
-rw-r--r--n/lcd/src/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/n/lcd/src/Makefile b/n/lcd/src/Makefile
new file mode 100644
index 0000000..50de46a
--- /dev/null
+++ b/n/lcd/src/Makefile
@@ -0,0 +1,12 @@
+BASE = ../../avr
+AVR_PROGS = lcd
+lcd_SOURCES = lcd.c
+MODULES = uart proto utils
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega8
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+include $(BASE)/make/Makefile.gen