source: lang/Makefile @ ef85bd7

help
Last change on this file since ef85bd7 was ef85bd7, checked in by pawelk <pawelk@…>, 16 years ago

Przygotowalem dystrybucje slownikow w wersji tar.gz.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@17 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 632 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
13
14# path to dictionary compiler
15DIC_COMPILER=../app/src/compiledic/compiledic
16
17
18
19.PHONY: compile
20compile:
21        #$DIC_COMPILER ...
22       
23
24
25.PHONY: distribute
26distribute: compile dist_tarball
27        @echo "Distribution ready!"
28       
29       
30.PHONY: dist_tarball
31dist_tarball:
32        cd dist && make tarball; cd ${CUR_DIR};
33       
Note: See TracBrowser for help on using the repository browser.