- Timestamp:
- 03/25/07 19:34:12 (6 years ago)
- 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)
- Files:
-
- 1 modified
-
common/include/lib.mak.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
common/include/lib.mak.in
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:
