- Timestamp:
- 12/20/13 01:30:39 (11 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r243d027 rf600a02 36 36 .PHONY: share 37 37 share: 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) 38 42 39 43 # ------------------------------------------------------------------ … … 41 45 # ------------------------------------------------------------------ 42 46 .PHONY: clean 43 clean: clean_components clean_ documentation clean_config clean_config_mak47 clean: clean_components clean_share clean_documentation clean_config clean_config_mak 44 48 @echo "All files cleaned successfully!" 45 49 … … 54 58 clean_documentation: 55 59 cd $(CUR_DIR)/doc && make clean; cd $(CUR_DIR) 60 61 .PHONY: clean_share 62 clean_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) 56 67 57 68 .PHONY: clean_config … … 100 111 install_share: share 101 112 cd $(CUR_DIR)/share && make install; cd $(CUR_DIR) 113 #dictionaries compilation... 114 #compdic 102 115 #grammar compilation... 103 dgc104 116 105 117 # ------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.