- Timestamp:
- 02/09/12 20:34:02 (13 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r5f4d9c3 rcfdf333 19 19 components: 20 20 cd $(SRC_DIR)/lib && make; cd $(CUR_DIR) 21 22 21 @for cmp in $(COMPONENTS); do\ 23 22 cd $(SRC_DIR)/$$cmp && make; cd $(CUR_DIR); \ … … 30 29 .PHONY: configuration 31 30 configuration: 31 cd $(CUR_DIR)/conf && make; cd $(CUR_DIR) 32 32 33 33 .PHONY: libraries … … 41 41 # ------------------------------------------------------------------ 42 42 .PHONY: clean 43 clean: clean_components clean_documentation 43 clean: clean_components clean_documentation clean_config 44 44 @echo "All files cleaned successfully!" 45 45 … … 55 55 cd $(CUR_DIR)/doc && make clean; cd $(CUR_DIR) 56 56 57 .PHONY: clean_config 58 clean_config: 59 cd $(CUR_DIR)/conf && make clean; cd $(CUR_DIR) 60 57 61 # ------------------------------------------------------------------ 58 62 # install section … … 60 64 .PHONY: install 61 65 install: all install_dirs install_components install_configuration install_libraries install_documentation install_share 62 66 63 67 .PHONY: install_dirs 64 68 install_dirs:
Note: See TracChangeset
for help on using the changeset viewer.