Changeset 16c16f01a7ceeab9b205f6d94920f94fbdd4da9f

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:
4 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r83478a0 r16c16f0  
     12007-03-23 L. Donnie Smith <cwiid@abstrakraft.org> 
     2        * Corrected installation directory creation logic 
     3        * Added .NOTPARALLEL to top level Makefile 
     4 
    152007-03-19 L. Donnie Smith <cwiid@abstrakraft.org> 
    26        * Added --disable-ldconfig option to configure 
  • Makefile.in

    re3670b7 r16c16f0  
    4444.PHONY: all install clean distclean uninstall uninstall_config $(LIB_DIRS) \ 
    4545        $(BIN_DIRS) wmdemo 
     46 
     47.NOTPARALLEL: 
  • common/include/app.mak

    r00fb3cb r16c16f0  
    1212 
    1313install: $(APP_NAME) $(INST_DIR) 
     14        install $(APP_NAME) $(INST_DIR) 
     15 
     16$(INST_DIR): 
    1417        install -d $(INST_DIR) 
    15         install $(APP_NAME) $(INST_DIR) 
    1618 
    1719clean: 
  • 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: