summaryrefslogtreecommitdiff
path: root/n/avr/adc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'n/avr/adc/Makefile')
-rw-r--r--n/avr/adc/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/n/avr/adc/Makefile b/n/avr/adc/Makefile
new file mode 100644
index 0000000..3dd2ee6
--- /dev/null
+++ b/n/avr/adc/Makefile
@@ -0,0 +1,16 @@
+PROGS = test_adc
+SOURCES = test_adc.c adc.c
+DOC = adc.html
+EXTRACTDOC = adc.c avrconfig.h
+MODULES = n/avr/proto n/avr/rs232 n/avr/utils
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+MCU_TARGET = atmega8535
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+DEFS =
+LIBS =
+
+include Makefile.avr