Changeset 16c16f01a7ceeab9b205f6d94920f94fbdd4da9f
- Timestamp:
- 03/25/07 19:34:12 (6 years ago)
- Author:
- dsmith <dsmith@…>
- Children:
- 75a6426cd7c5474de6c0796132f99a80b0c38fff
- Parents:
- b47af2bf94780a5f03a1720f4eadff9fc9fc5295
- git-author:
- L. Donnie Smith <donnie.smith@…> (03/25/07 19:34:12)
- git-committer:
- dsmith <dsmith@…> (03/25/07 19:34:12)
- Message:
-
Corrected installation directory creation; nonparallel make
git-svn-id: http://abstrakraft.org/cwiid/svn/trunk@41 918edb2d-ff29-0410-9de2-eb38e7f22bc7
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r83478a0
|
r16c16f0
|
|
| | 1 | 2007-03-23 L. Donnie Smith <cwiid@abstrakraft.org> |
| | 2 | * Corrected installation directory creation logic |
| | 3 | * Added .NOTPARALLEL to top level Makefile |
| | 4 | |
| 1 | 5 | 2007-03-19 L. Donnie Smith <cwiid@abstrakraft.org> |
| 2 | 6 | * Added --disable-ldconfig option to configure |
-
|
re3670b7
|
r16c16f0
|
|
| 44 | 44 | .PHONY: all install clean distclean uninstall uninstall_config $(LIB_DIRS) \ |
| 45 | 45 | $(BIN_DIRS) wmdemo |
| | 46 | |
| | 47 | .NOTPARALLEL: |
-
|
r00fb3cb
|
r16c16f0
|
|
| 12 | 12 | |
| 13 | 13 | install: $(APP_NAME) $(INST_DIR) |
| | 14 | install $(APP_NAME) $(INST_DIR) |
| | 15 | |
| | 16 | $(INST_DIR): |
| 14 | 17 | install -d $(INST_DIR) |
| 15 | | install $(APP_NAME) $(INST_DIR) |
| 16 | 18 | |
| 17 | 19 | clean: |
-
|
r063bc32
|
r16c16f0
|
|
| 27 | 27 | install: install_header install_static install_shared |
| 28 | 28 | |
| 29 | | install_header: |
| 30 | | install -d $(INC_INST_DIR) |
| | 29 | install_header: $(INC_INST_DIR) |
| 31 | 30 | install $(LIB_NAME).h $(INC_INST_DIR) |
| 32 | 31 | |
| 33 | | install_static: static |
| 34 | | install -d $(LIB_INST_DIR) |
| | 32 | $(INC_INST_DIR): |
| | 33 | install -d $(INC_INST_DIR) |
| | 34 | |
| | 35 | install_static: static $(LIB_INST_DIR) |
| 35 | 36 | install $(STATIC_LIB) $(LIB_INST_DIR) |
| 36 | 37 | |
| 37 | | install_shared: shared |
| 38 | | install -d $(LIB_INST_DIR) |
| | 38 | install_shared: shared $(LIB_INST_DIR) |
| 39 | 39 | install $(SHARED_LIB) $(LIB_INST_DIR) |
| 40 | 40 | ln -sf $(SHARED_LIB) $(LIB_INST_DIR)/$(SO_NAME) |
| 41 | 41 | ln -sf $(SO_NAME) $(LIB_INST_DIR)/$(LINK_NAME) |
| 42 | 42 | @LDCONFIG@ |
| | 43 | |
| | 44 | $(LIB_INST_DIR): |
| | 45 | install -d $(LIB_INST_DIR) |
| 43 | 46 | |
| 44 | 47 | clean: |