-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
49 lines (31 loc) · 1.17 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
# Makefile for dis (convert source code from UTF-8 to Shift_JIS)
# Do not use non-ASCII characters in this file.
MKDIR_P = mkdir -p
U8TOSJ = u8tosj
SRC_DIR = src
DOC_DIR = docs
INC_DIR = include
BLD_DIR = build
SRCS = $(filter-out $(SRC_DIR)/avl,$(wildcard $(SRC_DIR)/*)) $(wildcard $(SRC_DIR)/avl/*)
SJ_SRCS = $(subst $(SRC_DIR)/,$(BLD_DIR)/,$(SRCS))
DOCS = $(filter-out $(DOC_DIR)/ports.md,$(wildcard $(DOC_DIR)/*)) $(DOC_DIR)/CHANGELOG.txt
SJ_DOCS = $(addprefix $(BLD_DIR)/,$(DOCS))
INCS = $(wildcard $(INC_DIR)/*)
SJ_INCS = $(addprefix $(BLD_DIR)/,$(INCS))
.PHONY: all directories clean
all: directories $(SJ_DOCS) $(SJ_INCS) $(SJ_SRCS)
directories: $(BLD_DIR) $(BLD_DIR)/avl $(BLD_DIR)/docs $(BLD_DIR)/include
$(BLD_DIR) $(BLD_DIR)/avl $(BLD_DIR)/$(DOC_DIR) $(BLD_DIR)/$(INC_DIR):
$(MKDIR_P) $@
$(BLD_DIR)/$(DOC_DIR)/CHANGELOG.txt: CHANGELOG.md
$(U8TOSJ) < $^ >! $@
$(BLD_DIR)/$(DOC_DIR)/%: $(DOC_DIR)/%
$(U8TOSJ) < $^ >! $@
$(BLD_DIR)/$(INC_DIR)/%: $(INC_DIR)/%
$(U8TOSJ) < $^ >! $@
$(BLD_DIR)/%: $(SRC_DIR)/%
$(U8TOSJ) < $^ >! $@
clean:
-rm -f $(SJ_INCS) $(SJ_DOCS) $(SJ_SRCS)
-rmdir $(BLD_DIR)/$(INC_DIR) $(BLD_DIR)/$(DOC_DIR) $(BLD_DIR)/avl $(BLD_DIR)
# EOF