Changeset f600a02 for Makefile


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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r243d027 rf600a02  
    3636.PHONY: share 
    3737share: 
     38        @for lang in $(LANGUAGES); do\ 
     39                cd $(CUR_DIR)/share/$$lang  && make; cd $(CUR_DIR); \ 
     40        done 
     41        cd $(CUR_DIR)/share && make; cd $(CUR_DIR) 
    3842 
    3943# ------------------------------------------------------------------ 
     
    4145# ------------------------------------------------------------------ 
    4246.PHONY: clean 
    43 clean: clean_components clean_documentation clean_config clean_config_mak 
     47clean: clean_components clean_share clean_documentation clean_config clean_config_mak 
    4448        @echo "All files cleaned successfully!" 
    4549 
     
    5458clean_documentation: 
    5559        cd $(CUR_DIR)/doc && make clean; cd $(CUR_DIR) 
     60 
     61.PHONY: clean_share 
     62clean_share: 
     63        @for lang in $(LANGUAGES); do\ 
     64                cd $(CUR_DIR)/share/$$lang  && make clean; cd $(CUR_DIR); \ 
     65        done 
     66        cd $(CUR_DIR)/share && make clean; cd $(CUR_DIR) 
    5667 
    5768.PHONY: clean_config 
     
    100111install_share: share 
    101112        cd $(CUR_DIR)/share && make install; cd $(CUR_DIR) 
     113        #dictionaries compilation... 
     114        #compdic 
    102115        #grammar compilation... 
    103         dgc 
    104116 
    105117# ------------------------------------------------------------------ 
Note: See TracChangeset for help on using the changeset viewer.