Changeset f600a02 for share


Ignore:
Timestamp:
12/20/13 01:30:39 (10 years ago)
Author:
Tomasz Obrebski <obrebski@…>
Branches:
master
Children:
f924e4b
Parents:
d6a59ca
git-author:
Tomasz Obrebski <obrebski@…> (12/20/13 01:30:39)
git-committer:
Tomasz Obrebski <obrebski@…> (12/20/13 01:30:39)
Message:

Bugs in build and installation process fixed, lem.bin and gram.dgp built while compilation

Location:
share
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • share/Makefile

    rd2f119e rf600a02  
    11include ../config.mak 
     2 
     3 
     4TARGETS = gram.dgp 
     5 
     6.PHONY: all 
     7all: $(TARGETS) 
     8 
     9# ------------------------------------------------------------------ 
     10# main section 
     11# ------------------------------------------------------------------ 
     12 
     13gram.dgp: gram.dgc 
     14        dgc --grammar=gram.dgc --categories=$(LANGUAGE)/lem.cats --outputfile=gram.dgp  
     15 
    216 
    317.PHONY: install 
     
    1327        install -m 0644 pl_PL.ISO-8859-2/pl_PL.ISO-8859-2.sym $(LANG_DIR)/pl_PL.ISO-8859-2 
    1428        install -m 0644 pl_PL.UTF-8/lem.bin $(LANG_DIR)/pl_PL.UTF-8 
    15         install -m 0644 gram.dgc $(LANG_DIR) 
     29        install -m 0644 gram.dgp $(LANG_DIR) 
    1630        install -m 0644 weights.kor $(LANG_DIR) 
    1731endif 
     
    3246        rmdir $(LANG_DIR)/pl_PL.UTF-8 
    3347endif 
     48 
     49 
     50.PHONY: clean 
     51clean: 
     52        rm -f gram.dgp 
     53 
Note: See TracChangeset for help on using the changeset viewer.