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