################################Shimatta Makefile#################################### #CPU: STM32F030 #Compiler: arm-none-eabi ##################################################################################### #Add Files and Folders below######################################################### CFILES = main.c syscalls/syscalls.c setup/system_init.c startup/startup_stm32f0xx.c ASFILES = INCLUDEPATH = -Iinclude -Iinclude/cmsis -Ibme680-driver-fork target = bme680-air-meter LIBRARYPATH = -Lstartup LIBRARIES = DEFINES = -DSTM32F030x6 -DSTM32F0XX mapfile = memmap ##Custom Files### CFILES += bme680-driver-fork/bme680.c lcd.c delay.c meas.c ################################################################################### CC=arm-none-eabi-gcc OBJCOPY=arm-none-eabi-objcopy OBJDUMP=arm-none-eabi-objdump SIZE=arm-none-eabi-size LFLAGS = -mlittle-endian -mthumb -mcpu=cortex-m0 -mthumb-interwork LFLAGS += -mfloat-abi=soft --disable-newlib-supplied-syscalls -nostartfiles LFLAGS += -Tstartup/stm32f030.ld -Wl,-Map=$(mapfile).map -Wl,--gc-sections -g -O0 CFLAGS = -c -fmessage-length=0 -mlittle-endian -mthumb -mcpu=cortex-m0 -mthumb-interwork CFLAGS += -mfloat-abi=soft -nostartfiles -Wall -g -O0 #################################################################################### OBJ = $(CFILES:%.c=%.c.o) ASOBJ = $(ASFILES:%.S=%.S.o) default: $(target).elf binary: $(target).bin $(target).hex %.bin: %.elf $(OBJCOPY) -O binary $^ $@ %.hex: %.elf $(OBJCOPY) -O ihex $^ $@ #Linking $(target).elf: $(OBJ) $(ASOBJ) $(CC) $(LFLAGS) $(LIBRARYPATH) -o $@ $^ $(LIBRARIES) $(SIZE) $@ #Compiling %.c.o: %.c $(CC) $(CFLAGS) $(INCLUDEPATH) $(DEFINES) -o $@ $< %.S.o: %.S $(CC) $(CFLAGS) $(INCLUDEPATH) $(DEFINES) -o $@ $< .PHONY: qtproject clean mrproper objcopy disassemble disassemble: $(target).elf $(OBJDUMP) -D -s $< > $(target).lss objcopy: $(target).bin $(target).hex mrproper: rm -f $(target).pro clean: rm -f $(target).elf $(target).bin $(target).hex $(OBJ) $(ASOBJ) $(mapfile).map $(target).lss qtproject: echo -e "TEMPLATE = app\nCONFIG -= console app_bundle qt" > $(target).pro echo -e "SOURCES += $(CFILES) $(ASFILES)" >> $(target).pro echo -ne "INCLUDEPATH += " >> $(target).pro echo "$(INCLUDEPATH)" | sed "s!-I!./!g" >> $(target).pro echo -ne "HEADERS += " >> $(target).pro find -name "*.h" | tr "\\n" " " >> $(target).pro echo -ne "\nDEFINES += " >> $(target).pro echo "$(DEFINES)" | sed "s/-D//g" >> $(target).pro