inspektors/Makefile

222 lines
5.9 KiB
Makefile
Raw Normal View History

2017-11-22 12:48:04 +02:00
# AVR-GCC Makefile template, derived from the WinAVR template (which
# is public domain), believed to be neutral to any flavor of "make"
# (GNU make, BSD make, SysV make)
2017-11-24 13:29:36 +02:00
SRC_DIR = src
BUILD_DIR = build
INC_DIR = include
OBJ_DIR = obj
2017-11-22 12:48:04 +02:00
MCU = atmega328p
FORMAT = ihex
TARGET = main
2017-11-24 13:29:36 +02:00
SRC = $(wildcard $(SRC_DIR)/*.c)
OBJ = $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o)
LST = $(SRC:$(SRC_DIR)/%.c=$(BUILD_DIR)/%.lst)
2018-01-17 18:08:58 +02:00
OPT = s
2017-11-22 12:48:04 +02:00
# Name of this Makefile (used for "make depend").
MAKEFILE = Makefile
# Debugging format.
# Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.
# AVR (extended) COFF requires stabs, plus an avr-objcopy run.
DEBUG = stabs
# Compiler flag to set the C Standard level.
# c89 - "ANSI" C
# gnu89 - c89 plus GCC extensions
# c99 - ISO C99 standard (not yet fully implemented)
# gnu99 - c99 plus GCC extensions
CSTANDARD = -std=gnu99
# Place -D or -U options here
2018-01-17 17:54:17 +02:00
CDEFS = -DF_CPU=16000000L -D__AVR__ -D__AVR_ATmega328P__
2017-11-22 12:48:04 +02:00
# Place -I options here
2017-11-24 13:29:36 +02:00
CINCS = -I $(INC_DIR)
2017-11-22 12:48:04 +02:00
CDEBUG = -g$(DEBUG)
CTUNING = -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
#CEXTRA = -Wa,-adhlns=$(<:.c=.lst)
2018-01-02 14:33:15 +02:00
CFLAGS = $(CDEBUG) $(CDEFS) $(CINCS) -O$(OPT) $(CSTANDARD) $(CEXTRA)
2017-11-22 12:48:04 +02:00
#ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs
2017-11-24 17:24:12 +02:00
ifeq ($(BUILD),debug)
CFLAGS += -DDEBUG
2018-01-02 19:14:30 +02:00
CFLAGS += -Wall -Wextra -Wformat=2 -Wswitch-default \
-Wcast-align -Wpointer-arith -Wbad-function-cast \
-Wstrict-prototypes -Winline -Wundef -Wnested-externs \
-Wcast-qual -Wshadow -Wwrite-strings -Wconversion \
-Winit-self -Wstrict-aliasing -Wmissing-declarations \
-Wmissing-include-dirs -Wno-unused-parameter -Wuninitialized \
-Wold-style-definition -Wmissing-prototypes -Wunreachable-code \
-Wno-unused-but-set-variable -Wmaybe-uninitialized
2018-01-09 20:16:51 +02:00
CINCS += -I/usr/include/simavr
2018-01-02 19:14:30 +02:00
#
2017-11-24 17:24:12 +02:00
endif
2017-11-22 12:48:04 +02:00
#Additional libraries.
# Minimalistic printf version
PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min
# Floating point printf version (requires MATH_LIB = -lm below)
PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
PRINTF_LIB =
# Minimalistic scanf version
SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min
# Floating point + %[ scanf version (requires MATH_LIB = -lm below)
SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt
SCANF_LIB =
MATH_LIB = -lm
# External memory options
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
# used for variables (.data/.bss) and heap (malloc()).
#EXTMEMOPTS = -Wl,--section-start,.data=0x801100,--defsym=__heap_end=0x80ffff
# 64 KB of external RAM, starting after internal RAM (ATmega128!),
# only used for heap (malloc()).
#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff
EXTMEMOPTS =
#LDMAP = $(LDFLAGS) -Wl,-Map=$(TARGET).map,--cref
LDFLAGS = $(EXTMEMOPTS) $(LDMAP) $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)
# Programming support using avrdude. Settings and variables.
AVRDUDE_PROGRAMMER = usbasp
AVRDUDE_PORT = usb
2017-11-24 13:29:36 +02:00
AVRDUDE_WRITE_FLASH = -U flash:w:$(BUILD_DIR)/$(TARGET).hex
2018-01-17 18:08:58 +02:00
#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
2017-11-22 12:48:04 +02:00
# Uncomment the following if you want avrdude's erase cycle counter.
# Note that this counter needs to be initialized first using -Yn,
# see avrdude manual.
#AVRDUDE_ERASE_COUNTER = -y
# Uncomment the following if you do /not/ wish a verification to be
# performed after programming the device.
AVRDUDE_NO_VERIFY = -V
2017-11-22 12:48:04 +02:00
# Increase verbosity level. Please use this when submitting bug
# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
# to submit bug reports.
AVRDUDE_VERBOSE = -v -v
2017-11-22 12:48:04 +02:00
AVRDUDE_BASIC = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
2017-11-24 13:29:36 +02:00
AVRDUDE_FLAGS = $(AVRDUDE_BASIC) $(AVRDUDE_NO_VERIFY) $(AVRDUDE_VERBOSE) \
$(AVRDUDE_ERASE_COUNTER)
2017-11-22 12:48:04 +02:00
CC = avr-gcc
OBJCOPY = avr-objcopy
OBJDUMP = avr-objdump
SIZE = avr-size
NM = avr-nm
AVRDUDE = avrdude
2017-11-24 13:29:36 +02:00
REMOVE = rm -rf
2017-11-22 12:48:04 +02:00
MV = mv -f
# Combine all necessary flags and optional flags.
# Add target processor to flags.
2017-11-24 13:29:36 +02:00
ALL_CFLAGS = -mmcu=$(MCU) $(CFLAGS)
2017-11-22 12:48:04 +02:00
# Default target.
all: build
2017-11-24 13:29:36 +02:00
build: elf hex eep lss sym
2017-11-22 12:48:04 +02:00
2017-11-24 13:29:36 +02:00
elf: $(BUILD_DIR)/$(TARGET).elf
hex: $(BUILD_DIR)/$(TARGET).hex
eep: $(BUILD_DIR)/$(TARGET).eep
lss: $(BUILD_DIR)/$(TARGET).lss
sym: $(BUILD_DIR)/$(TARGET).sym
2017-11-22 12:48:04 +02:00
# Program the device.
2017-11-24 13:29:36 +02:00
program: $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).eep
2017-11-22 12:48:04 +02:00
$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
2017-11-24 17:24:12 +02:00
debug:
make "BUILD=debug"
2017-11-22 12:48:04 +02:00
# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
2017-11-24 13:29:36 +02:00
COFFCONVERT = $(OBJCOPY) --debugging \
--change-section-address .data-0x800000 \
--change-section-address .bss-0x800000 \
--change-section-address .noinit-0x800000 \
--change-section-address .eeprom-0x810000
2017-11-22 12:48:04 +02:00
2017-11-24 13:29:36 +02:00
coff: $(BUILD_DIR)/$(TARGET).elf
$(COFFCONVERT) -O coff-avr $< $(TARGET).cof
2017-11-22 12:48:04 +02:00
2017-11-24 13:29:36 +02:00
extcoff: $(BUILD_DIR)/$(TARGET).elf
$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof
2017-11-22 12:48:04 +02:00
.SUFFIXES: .elf .hex .eep .lss .sym
2017-11-24 13:29:36 +02:00
%.hex: %.elf
2017-11-22 12:48:04 +02:00
$(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@
2017-11-24 13:29:36 +02:00
%.eep: %.elf
2017-11-22 12:48:04 +02:00
-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
--change-section-lma .eeprom=0 -O $(FORMAT) $< $@
# Create extended listing file from ELF output file.
2017-11-24 13:29:36 +02:00
%.lss: %.elf
2017-11-22 12:48:04 +02:00
$(OBJDUMP) -h -S $< > $@
# Create a symbol table from ELF output file.
2017-11-24 13:29:36 +02:00
%.sym: %.elf
2017-11-22 12:48:04 +02:00
$(NM) -n $< > $@
# Link: create ELF output file from object files.
2017-11-24 13:29:36 +02:00
.SECONDARY: $(OBJ)
$(BUILD_DIR)/%.elf: $(OBJ)
@mkdir -p $(@D)
$(CC) $(ALL_CFLAGS) $^ --output $@ $(LDFLAGS)
2017-11-22 12:48:04 +02:00
# Compile: create object files from C source files.
2017-11-24 13:29:36 +02:00
$(OBJ_DIR)/%.o : $(SRC_DIR)/%.c
@mkdir -p $(@D)
2017-11-22 12:48:04 +02:00
$(CC) -c $(ALL_CFLAGS) $< -o $@
# Target: clean project.
clean:
2017-11-24 13:29:36 +02:00
$(REMOVE) $(BUILD_DIR)/* $(OBJ_DIR)/*
2017-11-22 12:48:04 +02:00
depend:
if grep '^# DO NOT DELETE' $(MAKEFILE) >/dev/null; \
then \
sed -e '/^# DO NOT DELETE/,$$d' $(MAKEFILE) > \
$(MAKEFILE).$$$$ && \
$(MV) $(MAKEFILE).$$$$ $(MAKEFILE); \
fi
echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' \
>> $(MAKEFILE); \
2017-11-24 13:29:36 +02:00
$(CC) -M -mmcu=$(MCU) $(CDEFS) $(CINCS) $(SRC) >> $(MAKEFILE)
2017-11-22 12:48:04 +02:00
.PHONY: all build elf hex eep lss sym program coff extcoff clean depend