Changeset cfdf333 for Makefile


Ignore:
Timestamp:
02/09/12 20:34:02 (13 years ago)
Author:
Tomasz Obrebski <to@…>
Branches:
master
Children:
ac25afd
Parents:
2ff1f65
git-author:
Tomasz Obrebski <to@…> (02/09/12 20:34:02)
git-committer:
Tomasz Obrebski <to@…> (02/09/12 20:34:02)
Message:

Naprawy dotyczace oblugi plikow konfiguracyjnych.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r5f4d9c3 rcfdf333  
    1919components: 
    2020        cd $(SRC_DIR)/lib && make; cd $(CUR_DIR) 
    21          
    2221        @for cmp in $(COMPONENTS); do\ 
    2322                cd $(SRC_DIR)/$$cmp && make; cd $(CUR_DIR); \ 
     
    3029.PHONY: configuration 
    3130configuration: 
     31        cd $(CUR_DIR)/conf && make; cd $(CUR_DIR) 
    3232 
    3333.PHONY: libraries 
     
    4141# ------------------------------------------------------------------ 
    4242.PHONY: clean 
    43 clean: clean_components clean_documentation 
     43clean: clean_components clean_documentation clean_config 
    4444        @echo "All files cleaned successfully!" 
    4545 
     
    5555        cd $(CUR_DIR)/doc && make clean; cd $(CUR_DIR) 
    5656 
     57.PHONY: clean_config 
     58clean_config: 
     59        cd $(CUR_DIR)/conf && make clean; cd $(CUR_DIR) 
     60 
    5761# ------------------------------------------------------------------ 
    5862# install section 
     
    6064.PHONY: install 
    6165install: all install_dirs install_components install_configuration install_libraries install_documentation install_share 
    62          
     66 
    6367.PHONY: install_dirs 
    6468install_dirs: 
Note: See TracChangeset for help on using the changeset viewer.