summaryrefslogtreecommitdiff
path: root/n/avr/adc/Makefile
diff options
context:
space:
mode:
authorburg2005-03-22 08:43:24 +0000
committerburg2005-03-22 08:43:24 +0000
commita3e326954c6cc15003986e9c81d1a36e58d500e7 (patch)
tree9fae8b332ae8bb1f22643711b62605fe70ac3eec /n/avr/adc/Makefile
parent66c17635b2c83c68544211f572f75334c8e8358b (diff)
Ajout du Module ADC (non testé)
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