-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.mk
More file actions
48 lines (34 loc) · 900 Bytes
/
common.mk
File metadata and controls
48 lines (34 loc) · 900 Bytes
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
BUILD_DIR ?= ./build
SRC_DIR ?= ./src
INC_DIR ?= ./include
SRCS += $(shell find -L $(SRC_DIR) -name "*.cpp" -or -name "*.c")
OBJS := $(SRCS:%=$(BUILD_DIR)/%.o)
DEPS := $(OBJS:.o=.d)
INC_DIRS := $(shell find -L $(INC_DIR) -type d)
INC_FLAGS := $(addprefix -I,$(INC_DIRS))
COMMONFLAGS = -Wall -Wextra -Wpedantic -Wshadow
ifeq ($(mode), debug)
COMMONFLAGS += -Og -g -DDEBUG
else
COMMONFLAGS += -Ofast -DNDEBUG
endif
CXXFLAGS ?= -std=c++11 $(COMMONFLAGS)
CXX ?= g++
CFLAGS ?= -std=c99 -Wdouble-promotion $(COMMONFLAGS)
CC ?= gcc
CPPFLAGS ?= $(INC_FLAGS) -MMD -MP
LDLIBS += -lm
-include $(DEPS)
MKDIR_P ?= mkdir -p
# 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)
.DEFAULT_GOAL :=