mirror of
https://github.com/halleysfifthinc/sniffer2
synced 2025-06-07 16:06:21 +00:00
87 lines
2.1 KiB
Makefile
87 lines
2.1 KiB
Makefile
###############################################################################
|
|
# Makefile for the project sniffer
|
|
###############################################################################
|
|
|
|
## General Flags
|
|
PROJECT = sniffer
|
|
MCU = atmega88
|
|
TARGET = sniffer.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 -DF_CPU=14745000UL -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 = sniffer.o avclandrv.o com232.o const.o delay2.o
|
|
|
|
## Objects explicitly added by the user
|
|
LINKONLYOBJECTS =
|
|
|
|
## Build
|
|
all: $(TARGET) sniffer.hex sniffer.eep size
|
|
|
|
## Compile
|
|
sniffer.o: ../sniffer.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) -c $<
|
|
|
|
avclandrv.o: ../avclandrv.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) -c $<
|
|
|
|
com232.o: ../com232.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) -c $<
|
|
|
|
const.o: ../const.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) -c $<
|
|
|
|
delay2.o: ../delay2.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) sniffer.elf dep/* sniffer.hex sniffer.eep
|
|
|
|
## Other dependencies
|
|
-include $(shell mkdir dep 2>/dev/null) $(wildcard dep/*)
|
|
|