-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
55 lines (40 loc) · 1.19 KB
/
Copy pathmakefile
File metadata and controls
55 lines (40 loc) · 1.19 KB
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
TARGET_EXEC ?= main.out
BUILD_DIR ?= ./build
SRC_DIRS ?= ./
SRCS := $(shell find $(SRC_DIRS) -name "*.cpp" -or -name "*.c" -or -name "*.s")
OBJS := $(SRCS:%=$(BUILD_DIR)/%.o)
DEPS := $(OBJS:.o=.d)
INC_DIRS := ./dac ../
INC_FLAGS := $(addprefix -I,$(INC_DIRS))
CPPFLAGS ?= $(INC_FLAGS) -Wall -Wextra -Wdouble-promotion -Werror -MMD -MP -Ofast -march=native -flto
LDLIBS := -lstdc++ -lm -pthread
LDFLAGS += -flto
BCONFIG ?= NORMAL
ifeq ($(BCONFIG), PROFILE_GENERATE)
CPPFLAGS += -fprofile-generate="../profile.gcda"
LDLIBS += -lgcov --coverage
LDFLAGS += -fprofile-generate="../profile.gcda"
else ifeq ($(BCONFIG), PROFILE_USE)
CPPFLAGS += -fprofile-use="../profile.gcda"
else ifneq ($(BCONFIG), NORMAL)
$(error Unknown BCONFIG $(BCONFIG))
endif
$(BUILD_DIR)/$(TARGET_EXEC): $(OBJS)
$(CC) $(OBJS) -o $@ $(LDFLAGS) $(LDLIBS)
# assembly
$(BUILD_DIR)/%.s.o: %.s
$(MKDIR_P) $(dir $@)
$(AS) $(ASFLAGS) -c $< -o $@
# c source
$(BUILD_DIR)/%.c.o: %.c
$(MKDIR_P) $(dir $@)
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
# c++ source
$(BUILD_DIR)/%.cpp.o: %.cpp
$(MKDIR_P) $(dir $@)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
.PHONY: clean
clean:
$(RM) -r $(BUILD_DIR)
-include $(DEPS)
MKDIR_P ?= mkdir -p