diff options
author | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2016-02-05 20:09:29 -0500 |
---|---|---|
committer | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2016-02-05 20:09:29 -0500 |
commit | 5d2fb1c30ad558e5deac368dd05531a31709cda9 (patch) | |
tree | e99592a716cc937d521ff72f2dad236a71295334 /blink/Makefile | |
parent | a97282bd712e8643a9a66016798025ccd0cf9a3e (diff) |
Rename blink to blink-t85.
Diffstat (limited to 'blink/Makefile')
-rw-r--r-- | blink/Makefile | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/blink/Makefile b/blink/Makefile deleted file mode 100644 index 890a892..0000000 --- a/blink/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -PROJECT=blink -SOURCES=$(PROJECT).c -MMCU=attiny85 -F_CPU = 1000000 - -CFLAGS=-mmcu=$(MMCU) -Wall -Os -DF_CPU=$(F_CPU) - -$(PROJECT).hex: $(PROJECT).out - avr-objcopy -O ihex $(PROJECT).out $(PROJECT).c.hex;\ - avr-size --mcu=$(MMCU) --format=avr $(PROJECT).out - -$(PROJECT).out: $(SOURCES) - avr-gcc $(CFLAGS) -I./ -o $(PROJECT).out $(SOURCES) - -program: $(PROJECT).hex - avrdude -p $(MMCU) -c avrisp -P /dev/ttyUSB0 -b 19200 -U flash:w:$(PROJECT).c.hex |