aboutsummaryrefslogtreecommitdiff
path: root/asm/blink/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'asm/blink/makefile')
-rw-r--r--asm/blink/makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/asm/blink/makefile b/asm/blink/makefile
new file mode 100644
index 0000000..4790211
--- /dev/null
+++ b/asm/blink/makefile
@@ -0,0 +1,17 @@
+CC=avr-gcc
+AS=avr-as
+
+PORT=/dev/ttyACM0
+TARG=blink
+
+all: build
+
+build:
+ $(AS) -mmcu=atmega328p -o $(TARG).elf $(TARG).s
+ 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).hex