From 5e460cb33f08481709c7927c403202aa36a002fc Mon Sep 17 00:00:00 2001 From: Olaf Rempel Date: Thu, 25 May 2017 11:19:25 +0200 Subject: [PATCH] update Makefile --- .gitignore | 1 + Makefile | 78 ++++++++++++++++++++++++------------------------------ 2 files changed, 36 insertions(+), 43 deletions(-) diff --git a/.gitignore b/.gitignore index 6d36148..d53dd72 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ *.bin *.hex *.lst +*.lss *.map diff --git a/Makefile b/Makefile index 751bce8..2633c8d 100644 --- a/Makefile +++ b/Makefile @@ -1,56 +1,48 @@ -PRG = epromsim -OBJ = main.o -MCU_TARGET = attiny2313 -OPTIMIZE = -Os +CC := avr-gcc +LD := avr-ld +OBJCOPY := avr-objcopy +OBJDUMP := avr-objdump +SIZE := avr-size -#AVRDUDE_PROG = -c avr910 -b 115200 -P /dev/ispprog -AVRDUDE_PROG = -c dragon_isp -P usb -AVRDUDE_MCU = attiny2313 +TARGET = epromsim +SOURCE = $(wildcard *.c) -DEFS = -LIBS = +MCU=attiny2313 +AVRDUDE_MCU=attiny2313 -# Override is only needed by avr-lib build system. -override CFLAGS = -g -Wall $(OPTIMIZE) -mmcu=$(MCU_TARGET) $(DEFS) -override LDFLAGS = -Wl,-Map,$(PRG).map +AVRDUDE_FUSES=lfuse:w:0xff:m hfuse:w:0xdb:m efuse:w:0xff:m +#AVRDUDE_PROG := -c avr910 -b 115200 -P /dev/ispprog +AVRDUDE_PROG := -c dragon_isp -P usb -CC = avr-gcc -OBJCOPY = avr-objcopy -OBJDUMP = avr-objdump -SIZE = avr-size +# --------------------------------------------------------------------------- -all: $(PRG).elf lst text - $(SIZE) -x -A $(PRG).elf +CFLAGS = -pipe -g -Os -mmcu=$(MCU) -Wall +CFLAGS += -fdata-sections -ffunction-sections +CFLAGS += -Wa,-adhlns=$(*F).lst +LDFLAGS = -Wl,-Map,$(@:.elf=.map),--cref +LDFLAGS += -Wl,--relax,--gc-sections -$(PRG).elf: $(OBJ) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) +# --------------------------------------------------------------------------- + +$(TARGET): $(TARGET).elf + @$(SIZE) -B -x --mcu=$(MCU) $< + +$(TARGET).elf: $(SOURCE:.c=.o) + @echo " Linking file: $@" + @$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ 2> /dev/null + @$(OBJDUMP) -h -S $@ > $(@:.elf=.lss) + @$(OBJCOPY) -j .text -j .data -O ihex $@ $(@:.elf=.hex) + @$(OBJCOPY) -j .text -j .data -O binary $@ $(@:.elf=.bin) %.o: %.c $(MAKEFILE_LIST) - $(CC) $(CFLAGS) -c $< -o $@ + @echo " Building file: $<" + @$(CC) $(CFLAGS) -o $@ -c $< clean: - rm -rf *.o $(PRG).lst $(PRG).map $(PRG).elf $(PRG).hex $(PRG).bin + rm -rf $(SOURCE:.c=.o) $(SOURCE:.c=.lst) $(addprefix $(TARGET), .elf .map .lss .hex .bin) -lst: $(PRG).lst - -%.lst: %.elf - $(OBJDUMP) -h -S $< > $@ - -text: hex bin - -hex: $(PRG).hex -bin: $(PRG).bin - -%.hex: %.elf - $(OBJCOPY) -j .text -j .data -O ihex $< $@ - -%.bin: %.elf - $(OBJCOPY) -j .text -j .data -O binary $< $@ - -install: text - avrdude $(AVRDUDE_PROG) -p $(AVRDUDE_MCU) -V -U flash:w:$(PRG).hex +install: $(TARGET).elf + avrdude $(AVRDUDE_PROG) -p $(AVRDUDE_MCU) -U flash:w:$(<:.elf=.hex) fuses: - avrdude $(AVRDUDE_PROG) -p $(AVRDUDE_MCU) -U efuse:w:0xff:m - avrdude $(AVRDUDE_PROG) -p $(AVRDUDE_MCU) -U hfuse:w:0xdb:m - avrdude $(AVRDUDE_PROG) -p $(AVRDUDE_MCU) -U lfuse:w:0xff:m + avrdude $(AVRDUDE_PROG) -p $(AVRDUDE_MCU) $(patsubst %,-U %, $(AVRDUDE_FUSES))