forked from akinomyoga/ble.sh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGNUmakefile
209 lines (172 loc) · 6.12 KB
/
GNUmakefile
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# -*- mode: makefile-gmake -*-
all:
.PHONY: all
# check GNU Make
ifeq ($(.FEATURES),)
$(error Sorry, please use a newer version (3.81 or later) of gmake (GNU Make).)
endif
# check gawk
GAWK := $(shell which gawk 2>/dev/null || type -p gawk 2>/dev/null)
ifeq ($(GAWK),)
GAWK := $(shell which awk 2>/dev/null || type -p awk 2>/dev/null)
ifeq ($(GAWK),)
$(error Sorry, gawk/awk could not be found. Please check your PATH environment variable.)
endif
ifeq ($(shell $(GAWK) --version 2>/dev/null | grep -Fi 'GNU Awk'),)
$(error Sorry, gawk could not be found. Please install gawk (GNU Awk).)
endif
endif
MWGPP:=$(GAWK) -f make/mwg_pp.awk
#------------------------------------------------------------------------------
# ble.sh
FULLVER:=0.4.0-devel3
OUTDIR:=out
outdirs += $(OUTDIR)
# Note: the following line is a workaround for the missing
# DEPENDENCIES_PHONY option for mwg_pp in older Makefile
ble-form.sh:
outfiles+=$(OUTDIR)/ble.sh
-include $(OUTDIR)/ble.dep
$(OUTDIR)/ble.sh: ble.pp GNUmakefile | .git $(OUTDIR)
DEPENDENCIES_PHONY=1 DEPENDENCIES_OUTPUT=$(@:%.sh=%.dep) DEPENDENCIES_TARGET=$@ FULLVER=$(FULLVER) \
$(MWGPP) $< >/dev/null
.DELETE_ON_ERROR: $(OUTDIR)/ble.sh
src/canvas.c2w.sh:
bash make_command.sh generate-c2w-table > $@
src/canvas.c2w.musl.sh: make/canvas.c2w.wcwidth-musl.c
+make -C make canvas.c2w.wcwidth-musl.exe
make/canvas.c2w.wcwidth-musl.exe | bash make_command.sh convert-custom-c2w-table _ble_util_c2w_musl > $@
src/canvas.emoji.sh:
bash make_command.sh generate-emoji-table > $@
#------------------------------------------------------------------------------
# keymap
outdirs += $(OUTDIR)/keymap
outfiles += $(OUTDIR)/keymap/emacs.sh
outfiles += $(OUTDIR)/keymap/vi.sh $(OUTDIR)/keymap/vi_digraph.sh $(OUTDIR)/keymap/vi_digraph.txt $(OUTDIR)/keymap/vi_test.sh
$(OUTDIR)/keymap/%.sh: keymap/%.sh | $(OUTDIR)/keymap
cp -p $< $@
$(OUTDIR)/keymap/%.txt: keymap/%.txt | $(OUTDIR)/keymap
cp -p $< $@
#------------------------------------------------------------------------------
# lib
outdirs += $(OUTDIR)/lib
outfiles += $(OUTDIR)/lib/init-term.sh
outfiles += $(OUTDIR)/lib/init-bind.sh
outfiles += $(OUTDIR)/lib/init-cmap.sh
outfiles += $(OUTDIR)/lib/init-msys1.sh
outfiles += $(OUTDIR)/lib/core-complete.sh
outfiles += $(OUTDIR)/lib/core-syntax.sh
outfiles += $(OUTDIR)/lib/core-test.sh
outfiles += $(OUTDIR)/lib/core-cmdspec.sh
outfiles += $(OUTDIR)/lib/core-debug.sh
outfiles += $(OUTDIR)/lib/core-edit.ignoreeof-messages.txt
outfiles += $(OUTDIR)/lib/core-decode.emacs-rlfunc.txt
outfiles += $(OUTDIR)/lib/core-decode.vi_imap-rlfunc.txt
outfiles += $(OUTDIR)/lib/core-decode.vi_nmap-rlfunc.txt
outfiles += $(OUTDIR)/lib/vim-surround.sh
outfiles += $(OUTDIR)/lib/vim-arpeggio.sh
outfiles += $(OUTDIR)/lib/vim-airline.sh
outfiles += $(OUTDIR)/lib/test-main.sh
outfiles += $(OUTDIR)/lib/test-util.sh
outfiles += $(OUTDIR)/lib/test-canvas.sh
outfiles += $(OUTDIR)/lib/test-decode.sh
outfiles += $(OUTDIR)/lib/test-edit.sh
outfiles += $(OUTDIR)/lib/test-syntax.sh
outfiles += $(OUTDIR)/lib/test-complete.sh
$(OUTDIR)/lib/%.sh: lib/%.sh | $(OUTDIR)/lib
cp -p $< $@
$(OUTDIR)/lib/%.txt: lib/%.txt | $(OUTDIR)/lib
cp -p $< $@
$(OUTDIR)/lib/core-syntax.sh: lib/core-syntax.sh lib/core-syntax-ctx.def | $(OUTDIR)/lib
$(MWGPP) $< > $@
$(OUTDIR)/lib/init-msys1.sh: lib/init-msys1.sh lib/init-msys1-helper.c | $(OUTDIR)/lib
$(MWGPP) $< > $@
$(OUTDIR)/lib/test-canvas.sh: lib/test-canvas.sh lib/test-canvas.GraphemeClusterTest.sh | $(OUTDIR)/lib
$(MWGPP) $< > $@
#outfiles += $(OUTDIR)/lib/init-msleep.sh
#$(OUTDIR)/lib/init-msleep.sh: lib/init-msleep.sh lib/init-msleep.c | $(OUTDIR)/lib
# $(MWGPP) $< > $@
#------------------------------------------------------------------------------
# documents
outdirs += $(OUTDIR)/doc
outfiles-doc += $(OUTDIR)/doc/README.md
outfiles-doc += $(OUTDIR)/doc/README-ja_JP.md
outfiles-doc += $(OUTDIR)/doc/LICENSE.md
outfiles-doc += $(OUTDIR)/doc/CONTRIBUTING.md
outfiles-doc += $(OUTDIR)/doc/ChangeLog.md
outfiles-doc += $(OUTDIR)/doc/Release.md
$(OUTDIR)/doc/%: % | $(OUTDIR)/doc
cp -p $< $@
$(OUTDIR)/doc/%: docs/% | $(OUTDIR)/doc
cp -p $< $@
#------------------------------------------------------------------------------
# contrib
.PHONY: update-contrib
update-contrib contrib/contrib.mk:
git submodule update --init --recursive
include contrib/contrib.mk
#------------------------------------------------------------------------------
# target "all"
$(outdirs):
mkdir -p $@
build: contrib/contrib.mk $(outfiles) $(outfiles-doc)
.PHONY: build
all: build
#------------------------------------------------------------------------------
# target "install"
ifneq ($(INSDIR),)
ifeq ($(INSDIR_DOC),)
INSDIR_DOC := $(INSDIR)/doc
endif
else
ifneq ($(filter-out %/,$(DESTDIR)),)
DESTDIR := $(DESTDIR)/
endif
ifneq ($(DESTDIR)$(PREFIX),)
DATA_HOME := $(DESTDIR)$(PREFIX)/share
else ifneq ($(XDG_DATA_HOME),)
DATA_HOME := $(XDG_DATA_HOME)
else
DATA_HOME := $(HOME)/.local/share
endif
INSDIR = $(DATA_HOME)/blesh
INSDIR_DOC = $(DATA_HOME)/doc/blesh
endif
install: \
$(outfiles:$(OUTDIR)/%=$(INSDIR)/%) \
$(outfiles-doc:$(OUTDIR)/doc/%=$(INSDIR_DOC)/%) \
$(INSDIR)/cache.d $(INSDIR)/run
$(INSDIR)/%: $(OUTDIR)/%
bash make_command.sh install "$<" "$@"
$(INSDIR_DOC)/%: $(OUTDIR)/doc/%
bash make_command.sh install "$<" "$@"
$(INSDIR)/cache.d $(INSDIR)/run:
mkdir -p $@ && chmod a+rwxt $@
.PHONY: install
clean:
-rm -rf $(outfiles) $(OUTDIR)/ble.dep
.PHONY: clean
dist: $(outfiles)
FULLVER=$(FULLVER) bash make_command.sh dist $^
.PHONY: dist
dist_excludes= \
--exclude=./ble/backup \
--exclude=*~ \
--exclude=./ble/.git \
--exclude=./ble/out \
--exclude=./ble/dist \
--exclude=./ble/ble.sh
dist.date:
cd .. && tar cavf "$$(date +ble.%Y%m%d.tar.xz)" ./ble $(dist_excludes)
.PHONY: dist.date
#------------------------------------------------------------------------------
define DeclareMakeCommand
$1: $2
bash make_command.sh $1
.PHONY: $1
endef
$(eval $(call DeclareMakeCommand,ignoreeof-messages,))
$(eval $(call DeclareMakeCommand,scan,))
$(eval $(call DeclareMakeCommand,check,build))
$(eval $(call DeclareMakeCommand,check-all,build))
$(eval $(call DeclareMakeCommand,list-functions,))