summaryrefslogtreecommitdiff
path: root/n/line-follower/src/Makefile
diff options
context:
space:
mode:
authorprot2004-12-09 23:57:42 +0000
committerprot2004-12-09 23:57:42 +0000
commit853fb5b5d899eb55f1f7d4044bff0a8d5d84b694 (patch)
treebe3ed35adefb3637e15963f70d12ce6402d35ccb /n/line-follower/src/Makefile
parent603d1062ef6decd1a3065a12efc8f12480edb71b (diff)
Importing files from n/asserv
Diffstat (limited to 'n/line-follower/src/Makefile')
-rw-r--r--n/line-follower/src/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/n/line-follower/src/Makefile b/n/line-follower/src/Makefile
new file mode 100644
index 0000000..dbfe3bc
--- /dev/null
+++ b/n/line-follower/src/Makefile
@@ -0,0 +1,23 @@
+PROGS = linefol
+linefol_OBJECTS = main.o rs232.o proto.o
+DOC =
+EXTRACTDOC =
+MODULES = n/avr/rs232 n/avr/proto n/avr/utils
+CONFIGFILE = avrconfig.h
+# atmega8, atmega8535, atmega128...
+MCU_TARGET = atmega128
+# -O2 : speed
+# -Os : size
+OPTIMIZE = -O2
+
+DEFS =
+LDLIBS =
+
+include Makefile.avr
+
+linefol.elf: $(linefol_OBJECTS)
+
+test_pwm.elf: $(test_pwm_OBJECTS)
+
+test_dsp.elf: $(test_dsp_OBJECTS)
+