forked from approach0/search-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (69 loc) · 2.04 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
PROJ_DEP_MK := proj-dep.mk
SRC_LIST_FILE := srclist.txt
# macro that prints colorful notice for target name
TARGET_COLOR_PRINT = @ tput setaf 1 && echo '[$@] ' && tput sgr0;
.PHONY: all_modules test
include rules.mk
all: all_modules tags
##################################
# general rules are listed below
##################################
# this target is integration tests
tests: all_modules
$(TARGET_COLOR_PRINT)
$(MAKE) -C $@
# project library files
%-module:
$(TARGET_COLOR_PRINT)
$(MAKE) -C $* lib
# specify modules to be included for building
TARGETS_FILE = targets.mk
# list the module names you want to compile
MODULE_NAMES := $(shell cat ${TARGETS_FILE})
# expand variables after we get MODULE_NAMES
MODULE_NAMES := $(MODULE_NAMES:=-module)
MODULE_BINS := $(MODULE_NAMES:=-bin)
MODULE_CLEAN := $(MODULE_NAMES:=-clean)
# include project module dependency rules.
# this .mk is generated by running ./configure
# at the project top directory.
include $(PROJ_DEP_MK)
# now we can list all prerequisites
all_modules: $(MODULE_BINS)
# binary files are dependent on library files (second pass)
%-module-bin: $(MODULE_NAMES)
$(TARGET_COLOR_PRINT)
$(MAKE) -C $* all
# clean rules
%-module-clean:
$(TARGET_COLOR_PRINT)
$(MAKE) -C $* clean
clean: tags-clean $(MODULE_CLEAN)
rm -f linenoise-history.txt
# ctag related files
# (ctag is used for source code view using text editor like Vim)
SRC_LIST := $(shell test -e ${SRC_LIST_FILE} && \
cat ${SRC_LIST_FILE})
tags: $(SRC_LIST)
$(HIGHLIGHT_BEGIN) 5
@ echo '[create source list file]'
$(HIGHLIGHT_END)
$(FIND) \( -name '*.[hcly]' -o \
-name '*.cpp' \) -a -print > $(SRC_LIST_FILE)
$(HIGHLIGHT_BEGIN) 5
@ echo '[create ctags]'
$(HIGHLIGHT_END)
@ if command -v ctags; then \
ctags --langmap=c:.c.y -L $(SRC_LIST_FILE); \
else \
echo 'no ctags command.'; \
fi
tags-clean:
$(HIGHLIGHT_BEGIN) 5
@echo '[clean ctags]'
$(HIGHLIGHT_END)
@$(FIND) -type f \( -name 'tags' \) -print | xargs rm -f
$(HIGHLIGHT_BEGIN) 5
@echo '[remove source list file]'
$(HIGHLIGHT_END)
@rm -f $(SRC_LIST_FILE)