summaryrefslogtreecommitdiff
path: root/n/lcd/src/Makefile
diff options
context:
space:
mode:
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