help
        
      
      
        
  | Rev | Line |   | 
|---|
| [ef85bd7] | 1 |  | 
|---|
 | 2 | CUR_DIR=$(shell pwd) | 
|---|
 | 3 |  | 
|---|
 | 4 | #directory with dictionary source | 
|---|
 | 5 | export UTT_DIC_SRC_HOME=${CUR_DIR}/src | 
|---|
 | 6 | #directory with configuration files | 
|---|
 | 7 | export UTT_DIC_CONF_HOME=${CUR_DIR}/conf | 
|---|
 | 8 | #directory where compiled dictionaries will be placed | 
|---|
 | 9 | export UTT_DIC_BIN=$(CUR_DIR)/dic | 
|---|
 | 10 | #directory where distribution will be placed | 
|---|
 | 11 | export UTT_DIC_OUTPUT=${CUR_DIR} | 
|---|
 | 12 |  | 
|---|
 | 13 |  | 
|---|
 | 14 | # path to dictionary compiler | 
|---|
 | 15 | DIC_COMPILER=../app/src/compiledic/compiledic | 
|---|
 | 16 |  | 
|---|
 | 17 |  | 
|---|
 | 18 |  | 
|---|
 | 19 | .PHONY: compile | 
|---|
 | 20 | compile: | 
|---|
 | 21 |         #$DIC_COMPILER ... | 
|---|
 | 22 |          | 
|---|
 | 23 |  | 
|---|
 | 24 |  | 
|---|
 | 25 | .PHONY: distribute | 
|---|
 | 26 | distribute: compile dist_tarball | 
|---|
 | 27 |         @echo "Distribution ready!" | 
|---|
 | 28 |          | 
|---|
 | 29 |          | 
|---|
 | 30 | .PHONY: dist_tarball | 
|---|
 | 31 | dist_tarball: | 
|---|
 | 32 |         cd dist && make tarball; cd ${CUR_DIR}; | 
|---|
 | 33 |          | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.