Show
Ignore:
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:
1 modified

Legend:

Unmodified
Added
Removed
  • common/include/lib.mak.in

    r063bc32 r16c16f0  
    2727install: install_header install_static install_shared 
    2828 
    29 install_header: 
    30         install -d $(INC_INST_DIR) 
     29install_header: $(INC_INST_DIR) 
    3130        install $(LIB_NAME).h $(INC_INST_DIR) 
    3231 
    33 install_static: static 
    34         install -d $(LIB_INST_DIR) 
     32$(INC_INST_DIR): 
     33        install -d $(INC_INST_DIR) 
     34 
     35install_static: static $(LIB_INST_DIR) 
    3536        install $(STATIC_LIB) $(LIB_INST_DIR) 
    3637 
    37 install_shared: shared 
    38         install -d $(LIB_INST_DIR) 
     38install_shared: shared $(LIB_INST_DIR) 
    3939        install $(SHARED_LIB) $(LIB_INST_DIR) 
    4040        ln -sf $(SHARED_LIB) $(LIB_INST_DIR)/$(SO_NAME) 
    4141        ln -sf $(SO_NAME) $(LIB_INST_DIR)/$(LINK_NAME) 
    4242        @LDCONFIG@ 
     43 
     44$(LIB_INST_DIR): 
     45        install -d $(LIB_INST_DIR) 
    4346 
    4447clean: