From 34fd739df83d3e30db19984e40fc68e21b1fce4e Mon Sep 17 00:00:00 2001 From: Grace Copplestone <grace.copplestone@cba.mit.edu> Date: Thu, 10 Aug 2017 09:53:03 -0400 Subject: [PATCH] Delete 8e5_hello_world.make --- families/e5/8e5_hello_world.make | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 families/e5/8e5_hello_world.make diff --git a/families/e5/8e5_hello_world.make b/families/e5/8e5_hello_world.make deleted file mode 100644 index 632ae8d..0000000 --- a/families/e5/8e5_hello_world.make +++ /dev/null @@ -1,19 +0,0 @@ -PROJECT=8e5_hello_world -SOURCES=$(PROJECT).c -MMCU=atxmega8e5 -F_CPU = 32000000 -TARGET = x8e5 -PROGRAMMER= atmelice_pdi - -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 $(TARGET) -c $(PROGRAMMER) -U flash:w:$(PROJECT).c.hex - -- GitLab