aboutsummaryrefslogtreecommitdiff
path: root/asm/blinkdelay2/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'asm/blinkdelay2/makefile')
-rw-r--r--asm/blinkdelay2/makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/asm/blinkdelay2/makefile b/asm/blinkdelay2/makefile
new file mode 100644
index 0000000..063bd39
--- /dev/null
+++ b/asm/blinkdelay2/makefile
@@ -0,0 +1,19 @@
+AS=avr-as
+LD=avr-ld
+LDSCRIPT=link.ld
+
+PORT=/dev/ttyACM0
+TARG=blink
+
+all: build
+
+build:
+ $(AS) -mmcu=atmega328p -c -o $(TARG).o $(TARG).s
+ $(LD) -T$(LDSCRIPT) -o $(TARG).elf $(TARG).o
+ avr-objcopy -j .text -j .data -O ihex $(TARG).elf $(TARG).hex
+
+burn:
+ avrdude -v -p atmega328p -c arduino -P $(PORT) -b 115200 -D -U flash:w:$(TARG).hex
+
+clean:
+ rm -f $(TARG).elf $(TARG).o $(TARG).hex