summaryrefslogtreecommitdiffhomepage
path: root/digital/avr/modules/isp/test/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2009-04-17 00:25:44 +0200
committerNicolas Schodet2009-04-17 00:25:44 +0200
commit0476a9aed588828414a13361ee6f1983265416e5 (patch)
tree8f29efba48647dfd52e0506709ce1494f0ec07dc /digital/avr/modules/isp/test/Makefile
parent06ae1ef9e5fe5ecaddce8408f8bd9df8bd08fb2f (diff)
* digital/avr/modules/isp:
- added low level programing methods.
Diffstat (limited to 'digital/avr/modules/isp/test/Makefile')
-rw-r--r--digital/avr/modules/isp/test/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/digital/avr/modules/isp/test/Makefile b/digital/avr/modules/isp/test/Makefile
new file mode 100644
index 00000000..c06fd358
--- /dev/null
+++ b/digital/avr/modules/isp/test/Makefile
@@ -0,0 +1,12 @@
+BASE = ../../..
+AVR_PROGS = test_isp
+test_isp_SOURCES = test_isp.c
+MODULES = isp utils
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+AVR_MCU = atmega8
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+include $(BASE)/make/Makefile.gen