-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.win
91 lines (64 loc) · 2.18 KB
/
Makefile.win
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# $Id$
###############################################################################
# Makefile for the project FreeBus
###############################################################################
## General Flags
PROJECT = FreeBus
MCU = atmega16
TARGET = FreeBus.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 -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=FreeBus.map
## 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 = TestAVR.o fb_hal.o fb_prot.o msg_queue.o eeprom.o hal.o
## Objects explicitly added by the user
LINKONLYOBJECTS =
## Build
all: $(TARGET) FreeBus.hex FreeBus.eep FreeBus.lss size
## Compile
TestAVR.o: ../TestAVR.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
fb_hal.o: ../fb_hal.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
fb_prot.o: ../fb_prot.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
msg_queue.o: ../msg_queue.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
eeprom.o: ../eeprom.c
$(CC) $(INCLUDES) $(CFLAGS) -c $<
hal.o: ../hal.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) FreeBus.elf dep/* FreeBus.hex FreeBus.eep FreeBus.lss FreeBus.map
## Other dependencies
-include $(shell mkdir dep 2>/dev/null) $(wildcard dep/*)