source: lang/Makefile @ e28a625

help
Last change on this file since e28a625 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: 817 bytes
Line 
1
2CUR_DIR=$(shell pwd)
3
4#directory with dictionary source
5export UTT_DIC_SRC_HOME=${CUR_DIR}/src
6#directory with configuration files
7export UTT_DIC_CONF_HOME=${CUR_DIR}/conf
8#directory where compiled dictionaries will be placed
9export UTT_DIC_BIN=$(CUR_DIR)/dic
10#directory where distribution will be placed
11export UTT_DIC_OUTPUT=${CUR_DIR}
12
13export LANG_MODULES=pl_PL.ISO-8852-2 pl_PL.UTF-8
14
15# path to dictionary compiler
16DIC_COMPILER=../app/src/compiledic/compiledic
17
18
19
20.PHONY: compile
21compile:
22        #$DIC_COMPILER ...
23       
24
25
26.PHONY: distribute
27distribute: compile dist_tarball
28        @echo "Distribution ready!"
29       
30       
31.PHONY: dist_tarball
32dist_tarball:
33        cd dist && make tarball; cd ${CUR_DIR};
34       
35       
36.PHONY: dist_tarball_pl_PL.ISO-8859-2
37dist_tarball:
38        export DIC_LANG=pl_PL.ISO-8859-2 && \
39        cd dist && make tarball; cd ${CUR_DIR};
40       
Note: See TracBrowser for help on using the repository browser.