diff options
author | Linus Nordberg <linus@nordberg.se> | 2016-05-18 12:07:50 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2016-05-18 12:07:50 +0200 |
commit | 7ebd56579f5e90861c39fdf46fa7d53446cfeccf (patch) | |
tree | f651b62eed0fbecfb476758e12abafe69f9a1678 /Makefile |
Read from and write to MKM when panic button is pressed.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8ac277b --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CC = avr-gcc +CFLAGS = -Wall -Werror -mmcu=avr25 -D__AVR_ATtiny828__ +OBJCOPY = avr-objcopy + +all: tamper.hex + +%.elf: %.c + $(CC) $(CFLAGS) -o $@ $^ + +%.hex: %.elf + $(OBJCOPY) -O ihex $< $@ + +clean: + -rm *.o *.elf *.hex |