############################################################################### # Makefile for the project B15F ############################################################################### ## General Flags PROJECT = B15F MCU = atmega1284 TARGET = B15F.elf CC = avr-g++ CPP = avr-g++ ## Options common to compile, link and assembly rules COMMON = -mmcu=$(MCU) ## Compile options common for all C compilation units. CFLAGS = $(COMMON) CFLAGS += -Wall -gdwarf-2 -DF_CPU=20000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums CFLAGS += -MD -MP -MT $(*F).o -MF dep/$(@F).d ## Assembly specific flags ASMFLAGS = $(COMMON) ASMFLAGS += $(CFLAGS) ASMFLAGS += -x assembler-with-cpp -Wa,-gdwarf2 ## Linker flags LDFLAGS = $(COMMON) LDFLAGS += -Wl,-Map=B15F.map ## Intel Hex file production flags HEX_FLASH_FLAGS = -R .eeprom -R .fuse -R .lock -R .signature HEX_EEPROM_FLAGS = -j .eeprom HEX_EEPROM_FLAGS += --set-section-flags=.eeprom="alloc,load" HEX_EEPROM_FLAGS += --change-section-lma .eeprom=0 --no-change-warnings ## Include Directories INCLUDES = -I"C:\avr8-gnu-toolchain-win32_x86\avr\include" ## Library Directories LIBDIRS = -L"C:\avr8-gnu-toolchain-win32_x86\avr\lib" ## Libraries LIBS = -lc ## Objects that must be built in order to link OBJECTS = main.o spi.o ## Objects explicitly added by the user LINKONLYOBJECTS = ## Build all: $(TARGET) B15F.hex B15F.eep B15F.lss## Compile main.o: ../main.c $(CPP) $(INCLUDES) $(CFLAGS) -c $< spi.o: ../spi.cpp $(CPP) $(INCLUDES) $(CFLAGS) -c $< ##Link $(TARGET): $(OBJECTS) $(CPP) $(LDFLAGS) $(OBJECTS) $(LINKONLYOBJECTS) $(LIBDIRS) $(LIBS) -o $(TARGET) %.hex: $(TARGET) avr-objcopy -O ihex $(HEX_FLASH_FLAGS) $< $@ %.eep: $(TARGET) -avr-objcopy $(HEX_EEPROM_FLAGS) -O ihex $< $@ || exit 0 %.lss: $(TARGET) avr-objdump -h -S $< > $@ ## Clean target .PHONY: clean clean: -rm -rf $(OBJECTS) B15F.elf dep/* B15F.hex B15F.eep B15F.lss B15F.map ## Other dependencies -include $(shell mkdir dep 2>NUL) $(wildcard dep/*)