📄 makefile
字号:
###############################################################################
# Makefile for the project goggle
###############################################################################
## General Flags
PROJECT = goggle
MCU = atmega168
TARGET = goggle.elf
CC = avr-gcc.exe
## 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 -Os -fsigned-char
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 +=
## Intel Hex file production flags
HEX_FLASH_FLAGS = -R .eeprom
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
## Objects that must be built in order to link
OBJECTS = main.o oled.o spi.o ADC.o CalibrationforHMC1052.o CalculateforAngle.o CalibrationforACC.o Key.o
## Objects explicitly added by the user
LINKONLYOBJECTS =
## Build
all: $(TARGET) goggle.hex goggle.eep size
## Compile
main.o: ../main.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
oled.o: ../oled.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
spi.o: ../spi.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
ADC.o: ../ADC.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
CalibrationforHMC1052.o: ../CalibrationforHMC1052.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
CalculateforAngle.o: ../CalculateforAngle.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
CalibrationforACC.o: ../CalibrationforACC.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
Key.o: ../Key.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
##Link
$(TARGET): $(OBJECTS)
$(CC) $(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 $< > $@
size: ${TARGET}
@echo
@avr-size -C --mcu=${MCU} ${TARGET}
## Clean target
.PHONY: clean
clean:
-rm -rf $(OBJECTS) goggle.elf dep/* goggle.hex goggle.eep
## Other dependencies
-include $(shell mkdir dep 2>/dev/null) $(wildcard dep/*)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -