-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
64 lines (46 loc) · 1.28 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
#-----------------------------------------------------
# Simple makefile
#
# G. Berthiaume - 2019
#-----------------------------------------------------
# #
# USER DEFINE VARIABLES #
# #
# What is the complier
CC ?= gcc
# What is the output name
TARGET_EXEC ?= urbanmi
# Where to build ?
BUILD_DIR ?= ./build
# Where are the source ?
SRC_DIRS ?= ./src
# Flags
INC_DIRS := $(shell find $(SRC_DIRS) -type d)
INC_FLAGS := $(addprefix -I,$(INC_DIRS))
CFLAGS ?= $(INC_FLAGS) -Wall -Wextra -g -std=c11 -O2 # -fsanitize=address
CPPFLAGS ?= $(INC_FLAGS) -MMD -MP
# #
# GLOBAL VARIABLES #
# #
# Finding the dependecies
SRCS := $(shell find $(SRC_DIRS) -name *.cpp -or -name *.c -or -name *.s)
OBJS := $(SRCS:%=$(BUILD_DIR)/%.o)
DEPS := $(OBJS:.o=.d)
# #
# COMMNANDS #
# #
$(BUILD_DIR)/$(TARGET_EXEC): $(OBJS)
$(CC) $(OBJS) -o $@ $(LDFLAGS)
# c source
$(BUILD_DIR)/%.c.o: %.c
$(MKDIR_P) $(dir $@)
$(CC) $(CFLAGS) -c $< -o $@
# c++ source
$(BUILD_DIR)/%.cpp.o: %.cpp
$(MKDIR_P) $(dir $@)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
.PHONY: clean # 'make clean' will run the recipe regardless of whether there is a file named clean.
clean:
$(RM) -r $(BUILD_DIR)
-include $(DEPS)
MKDIR_P ?= mkdir -p