forked from groonga/groonga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
151 lines (130 loc) · 3.61 KB
/
Makefile.am
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
# release: update-latest-release (commit) tag
LOCALES = ja
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = 1.9.6
SUBDIRS = \
build \
include \
vendor \
lib \
plugins \
src \
examples \
test \
benchmark \
packages \
data \
tools \
doc
EXTRA_DIST = \
CMakeLists.txt \
README.md \
base_version \
bindings \
bundled_lz4_version \
bundled_mecab_naist_jdic_version \
bundled_mecab_version \
bundled_rapidjson_version \
bundled_xxhash_version \
config.h.cmake.in \
gpg_uid \
nginx_version \
version-gen.sh
pkgdata_DATA = COPYING
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = groonga.pc
if GRN_WITH_APACHE_ARROW
pkgconfig_DATA += groonga-arrow.pc
endif
.PHONY: FORCE
FORCE:
$(srcdir)/version.sh: FORCE
cd "$(srcdir)" && $(SHELL) version-gen.sh
include $(srcdir)/version.sh
dist-hook:
echo "$(GRN_VERSION)" > $(distdir)/version
cd $(distdir) && autoreconf --install --force && find . -name autom4te.cache | xargs rm -fr
benchmark:
cd test/benchmark && $(MAKE) benchmark
tag:
cd $(top_srcdir) && git tag v$(VERSION) -a -m 'Groonga $(VERSION)!!!'
echo-version:
@echo $(VERSION)
update-latest-release: misc
@if test -z "$(OLD_RELEASE)"; then \
echo "\$$(OLD_RELEASE) is missing"; \
exit 1; \
fi
@if test -z "$(OLD_RELEASE_DATE)"; then \
echo "\$$(OLD_RELEASE_DATE) is missing"; \
exit 1; \
fi
@if test -z "$(NEW_RELEASE_DATE)"; then \
echo "\$$(NEW_RELEASE_DATE) is missing"; \
exit 1; \
fi
cd $(top_srcdir) && \
misc/update-latest-release.rb \
$(PACKAGE) $(OLD_RELEASE) $(OLD_RELEASE_DATE) \
$(VERSION) $(NEW_RELEASE_DATE) \
doc/source/install.rst \
doc/source/install/*.rst \
doc/locale/*/LC_MESSAGES/install.po \
$(GROONGA_ORG_PATH)/_config.yml
cd $(top_srcdir)/packages && \
$(RUBY) -S rake version:update \
RELEASE_DATE=$(NEW_RELEASE_DATE)
cd $(top_srcdir) && \
git add \
doc/source/install.rst \
doc/source/install/*.rst \
packages/debian/changelog \
packages/yum/groonga.spec.in && \
git commit -m "doc package: update version info to ${VERSION} - ${NEW_RELEASE_DATE}"
update-po:
@for lang in $(LOCALES); do \
(cd $(top_srcdir)/doc/locale/$$lang/LC_MESSAGES && $(MAKE) update) \
done
update-document:
@if test -z "$(GROONGA_ORG_PATH)"; then \
echo "\$$(GROONGA_ORG_PATH) is missing"; \
echo "add --with-groonga-org-path in configure"; \
exit 1; \
fi
rm -rf tmp-doc
mkdir tmp-doc
(cd doc && $(MAKE) clean-html)
(cd doc && $(MAKE) install docdir=$(abs_builddir)/tmp-doc/install)
rm -rf $(GROONGA_ORG_PATH)/docs
mv tmp-doc/install/en/html $(GROONGA_ORG_PATH)/docs
rm -rf tmp-doc/install/en
for locale in $$(cd tmp-doc/install/; echo *); do \
dest_base_dir=$(GROONGA_ORG_PATH)/$${locale}; \
mkdir -p $${dest_base_dir}; \
dest_dir=$${dest_base_dir}/docs; \
rm -rf $${dest_dir}; \
mv tmp-doc/install/$${locale}/html $${dest_dir}; \
done
update-version:
@if test -z "$(NEW_VERSION)"; then \
echo "\$$(NEW_VERSION) is missing"; \
exit 1; \
fi
@echo -n $(NEW_VERSION) > $(srcdir)/base_version
update-files:
cd doc && $(MAKE) update-files
cd data/html && $(MAKE) update-files
update-mruby:
cd vendor/mruby && make update
update-nginx:
@if test -z "$(NEW_NGINX_VERSION)"; then \
echo "\$$(NEW_NGINX_VERSION) is missing"; \
exit 1; \
fi
cd $(top_srcdir)/vendor && ./update_nginx.sh $(NEW_NGINX_VERSION)
misc:
@if test -z "$(CUTTER_SOURCE_PATH)"; then \
echo "\$$(CUTTER_SOURCE_PATH) is missing"; \
exit 1; \
fi
ln -s "$(CUTTER_SOURCE_PATH)/misc" misc