-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (42 loc) · 940 Bytes
/
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
# 构建脚本
CC = g++ -std=c++17
BIN_PATH = ./bin
INCLUDE = ./include
SRC = ./src
D = -g -D DEBUG
cstring:
${CC} ${D} \
-I ${INCLUDE} -I ${SRC} \
test/test_cstring.cpp \
-o ${BIN_PATH}/cstring.out
${BIN_PATH}/cstring.out
logger:
${CC} -g -D DEBUG \
-I ${INCLUDE} -I ${SRC} \
test/test_logger.cpp \
-o ${BIN_PATH}/logger.out
${BIN_PATH}/logger.out
threadpool:
${CC} -g -D DEBUG \
-I ${INCLUDE} -I ${SRC} \
test/test_threadpool.cpp \
-o ${BIN_PATH}/threadpool.out
${BIN_PATH}/threadpool.out
memcheck:
${CC} -g -D DEBUG \
-I ${INCLUDE} -I ${SRC} \
test/test_memcheck.cpp \
-o ${BIN_PATH}/memcheck.out
${BIN_PATH}/memcheck.out
allocator:
${CC} -g -D DEBUG \
-I ${INCLUDE} -I ${SRC} \
test/test_allocator.cpp \
-o ${BIN_PATH}/allocator.out
${BIN_PATH}/allocator.out
objpool:
${CC} -g -D DEBUG \
-I ${INCLUDE} -I ${SRC} \
test/test_objpool.cpp \
-o ${BIN_PATH}/objpool.out
${BIN_PATH}/objpool.out