-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
172 lines (138 loc) · 4.02 KB
/
makefile
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# Target file name (without extension).
#TARGET := pg_test
TARGET := pg_server
# Compiler optimization
OPT := 2
# Build type
CFG := release
# Defines to pass to compiler
CDEFS :=
# Print commands, executed during build
#QUIET:= false
QUIET:= true
# Build directory - place for intermediate objects, listings etc.
BUILD_DIR := $(CFG)/build
# Target directory. Final binary will be placed there.
TARG_DIR := $(CFG)/out
# Extra libraries to link against
LIBS := wsock32
# Directories with include files
CINCS := . fonts drivers widgets test
SRC :=
# List C source files here
SRC += pg.c
SRC += pg_theme.c
SRC += pg_tagitems.c
SRC += pg_primitives.c
SRC += pg_mempool.c
SRC += pg_res.c
SRC += widgets/pg_abitmap.c
SRC += widgets/pg_bitmap.c
SRC += widgets/pg_box.c
SRC += widgets/pg_group.c
SRC += widgets/pg_listbox.c
SRC += widgets/pg_matrix.c
SRC += widgets/pg_pbar.c
SRC += widgets/pg_scroll.c
SRC += widgets/pg_txtedit.c
SRC += widgets/pg_txtlabel.c
SRC += widgets/pg_txtview.c
SRC += drivers/drv_fb_mono_32.c
ifeq ($(TARGET), pg_test)
# For visual tests
SRC += test/socket.c
SRC += test/test.c
else
## For driver tests
SRC += test/test_bw_driver.c
endif
#---------------- Common compiler options ----------------
# General
COMMON_CFLAGS = -std=gnu99 -gdwarf-2 -pipe -O$(OPT) -g
COMMON_CFLAGS += -Wa,-adhlmns=$(@:.o=.lst)
COMMON_CFLAGS += -Wall -Wcast-align -Wimplicit -Wstrict-prototypes -Wuninitialized
COMMON_CFLAGS += -Wpointer-arith -Wswitch -Wredundant-decls -Wreturn-type -Wshadow -Wunused -Winline
# Various
COMMON_CFLAGS += -fverbose-asm
# Auto-generation of dependencies
COMMON_CFLAGS += -MMD -MP
#---------------- PC compiler options ----------------
# CFLAGS may be used for overriding some options
ALL_CFLAGS = $(COMMON_CFLAGS) $(CDEFS) $(addprefix -I,$(CINCS)) $(CFLAGS)
#---------------- Linker options ----------------
LDFLAGS := -mwindows,-Wl,-Map=$(TARG_DIR)/$(TARGET).map,--cref,--gc-sections
#---------------- Commands ----------------
ifeq ($(QUIET), true)
CMDP = @
endif
SHELL := sh
WINSHELL := cmd
CC := gcc
OBJCOPY := objcopy
OBJDUMP := objdump
SIZE := size
NM := nm
STRIP := strip
GREP := grep
TR := tr
PY := python
REMOVE := rm -f
COPY := cp
MD := mkdir -p
#---------------- Objects ----------------
# Define all object files.
OBJS := $(addprefix $(BUILD_DIR)/, $(SRC:.c=.o))
# Dependencies
DEPS = $(OBJS:.o=.d)
#---------------- Directories ----------------
ALL_DIRS := $(addprefix $(BUILD_DIR)/, $(sort $(dir $(SRC))))
ALL_DIRS += $(TARG_DIR) $(BUILD_DIR)
ALL_DIRS +=
# Remove trailing slashes
ALL_DIRS := $(subst / , , $(ALL_DIRS))
#---------------- Chain rules ----------------
# Default target
all: begin build end
#gccversion
# Clean project
clean: begin clean_list end
# Build target
build: $(ALL_DIRS) exe sym
exe: $(TARG_DIR)/$(TARGET).exe
sym: $(TARG_DIR)/$(TARGET).sym
#---------------- Recipes ----------------
$(ALL_DIRS):
@echo 'Creating dir' $@
$(CMDP) $(MD) $@
begin:
@echo
@echo '-------- begin --------'
@echo 'Target directory is' $(TARG_DIR)
end:
@echo '-------- end --------'
@echo
gccversion :
$(CMDP) $(CC) --version
# Create a symbol table from ELF output file.
$(TARG_DIR)/$(TARGET).sym: $(TARG_DIR)/$(TARGET).exe
@echo 'Creating Symbol Table' $@
$(CMDP) $(NM) -n $< > $@
# Link: create exe output file from object files.
$(TARG_DIR)/$(TARGET).exe: $(OBJS)
@echo 'Linking' $@
$(CMDP) $(CC) $(LDFLAGS) --output $@ $^ $(addprefix -l,$(LIBS))
$(CMDP) $(STRIP) $@ --strip-debug
# Compile: create object files from C source files.
$(BUILD_DIR)/%.o : %.c
@echo 'Compiling' $<
$(CMDP) $(CC) -c $(ALL_CFLAGS) $< -o $@
clean_list:
@echo
@echo 'Cleaning project'
$(CMDP) $(REMOVE) $(addprefix $(TARG_DIR)/$(TARGET), .exe .map .sym)
$(CMDP) $(REMOVE) $(OBJS)
$(CMDP) $(REMOVE) $(OBJS:.o=.lst)
$(CMDP) $(REMOVE) $(DEPS)
-include $(DEPS)
# Listing of phony targets.
.PHONY : all burn begin end gccversion build exe sym clean clean_list