help
Last change
on this file since 9ace5d2 was
e28a625,
checked in by obrebski <obrebski@…>, 16 years ago
|
Ta linia i następne zostaną zignorowane--
M app/dist/files/README
uaktualnione
M app/doc/utt.texinfo
dopiski
M app/src/gue/Makefile
statyczne biblioteki
M app/src/cor/cmdline_cor.ggo
usuniecie nie dzialajacych parametrow
M app/src/cor/Makefile
statyczne biblioteki
M app/src/common/cmdline_common.ggo
?
M app/src/kor/Makefile
statyczne biblioteki
M app/src/lem/Makefile
statyczne biblioteki
M lang/dist/tarball/Makefile
pakowanie modulow jezykowych po jednym
M lang/Makefile
-"-
git-svn-id: svn://atos.wmid.amu.edu.pl/utt@61 e293616e-ec6a-49c2-aa92-f4a8b91c5d16
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | # This makefile builds tarball distribution for utt dictionary. |
---|
2 | |
---|
3 | # |
---|
4 | # Some variables |
---|
5 | # |
---|
6 | DIR=$(shell pwd) |
---|
7 | |
---|
8 | # Common info about version and release |
---|
9 | _UTT_VER=$(shell cat ../../../app/dist/common/version.def) |
---|
10 | _UTT_REL=$(shell cat ../../../app/dist/common/release.def) |
---|
11 | |
---|
12 | # Temp vars |
---|
13 | _TARBALL_ROOT=$(DIR)/utt-$(_UTT_VER).$(_UTT_REL) |
---|
14 | _UTT_DIC_HOME=share/utt |
---|
15 | _TAR_FILE_NAME=utt.$(_UTT_VER)_$(_UTT_REL) |
---|
16 | |
---|
17 | |
---|
18 | #defualt task |
---|
19 | .PHONY: default |
---|
20 | default: |
---|
21 | @echo Build directory: ${UTT_DIC_BIN} |
---|
22 | @echo Output directory for tarball: ${UTT_DIC_OUTPUT} |
---|
23 | mkdir -p ${_TARBALL_ROOT}/${_UTT_DIC_HOME} |
---|
24 | if [[ -n "${DIC_LANG}" && -d ${UTT_DIC_BIN}/${DIC_LANG} ]]; \ |
---|
25 | then \ |
---|
26 | echo "Tworze dystrybucje ${DIC_LANG}"; \ |
---|
27 | mkdir -p ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}; \ |
---|
28 | cp -fr ${UTT_DIC_BIN}/${DIC_LANG}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}/; \ |
---|
29 | cp -fr ${UTT_DIC_CONF_HOME}/${DIC_LANG}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}/; \ |
---|
30 | rm -rf ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/${DIC_LANG}/.svn ; \ |
---|
31 | tar -czf ${UTT_DIC_OUTPUT}/${_TAR_FILE_NAME}.${DIC_LANG}.tar.gz utt*; \ |
---|
32 | else \ |
---|
33 | echo "Tworze pelna dystrybucje!"; \ |
---|
34 | cp -fr ${UTT_DIC_BIN}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/; \ |
---|
35 | cp -fr ${UTT_DIC_CONF_HOME}/* ${_TARBALL_ROOT}/${_UTT_DIC_HOME}/; \ |
---|
36 | find ${_TARBALL_ROOT}/${_UTT_DIC_HOME} -type d -path '*/.svn' -exec rm -rf {} \; ; \ |
---|
37 | tar -czf ${UTT_DIC_OUTPUT}/${_TAR_FILE_NAME}.all.tar.gz utt*; \ |
---|
38 | fi |
---|
39 | |
---|
40 | rm -rf ${_TARBALL_ROOT} |
---|
41 | |
---|
Note: See
TracBrowser
for help on using the repository browser.