From e22453c44e0b88f47cd16f6dd1a769bd4ff90203 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Sat, 20 May 2017 19:08:44 +0200 Subject: First prototype version: Just shift register usage. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e8d2720 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +all: + avr-gcc -Wall -mmcu=attiny85 -O3 -o main.elf main.c + avr-objcopy -j .text -j .data -O ihex main.elf main.hex + +program: all + avrdude -B100 -p t85 -c avrisp2 -P usb -U flash:w:main.hex -- cgit v1.2.3