Changeset 00fb3cb53077938d69d3e05f886c7005b4ada88e

Show
Ignore:
Timestamp:
03/08/07 20:13:43 (6 years ago)
Author:
dsmith <dsmith@…>
Children:
a339960844acef82f06e6c4ba82575fafc4e50ac
Parents:
8c3c63addd92a1a0b5cf969b6a3d2e055ec43c0e
git-author:
L. Donnie Smith <donnie.smith@…> (03/08/07 20:13:43)
git-committer:
dsmith <dsmith@…> (03/08/07 20:13:43)
Message:

Makefile install fix (explicitly create install directories)

git-svn-id: http://abstrakraft.org/cwiid/svn/trunk@26 918edb2d-ff29-0410-9de2-eb38e7f22bc7

Files:
5 modified

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r573bcd0 r00fb3cb  
    2727 
    2828$(CWIID_CONFIG_DIR): 
    29         mkdir -p $(CWIID_CONFIG_DIR) 
     29        install -d $(CWIID_CONFIG_DIR) 
    3030 
    3131$(CWIID_PLUGINS_DIR): 
    32         mkdir -p $(CWIID_PLUGINS_DIR) 
     32        install -d $(CWIID_PLUGINS_DIR) 
    3333 
    3434distclean: 
    35         rm -rf Makefile config.log config.status autom4te.cache $(COMMON)/include/defs.mak 
     35        rm -rf Makefile config.log config.status autom4te.cache \ 
     36                $(COMMON)/include/defs.mak 
    3637 
    3738uninstall: 
  • common/include/app.mak

    r15d141c r00fb3cb  
    1111        $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(LDLIBS) 
    1212 
    13 install: $(APP_NAME) 
    14         cp $(APP_NAME) $(INST_DIR) 
     13install: $(APP_NAME) $(INST_DIR) 
     14        install -d $(INST_DIR) 
     15        install $(APP_NAME) $(INST_DIR) 
    1516 
    1617clean: 
  • common/include/lib.mak

    r15d141c r00fb3cb  
    2828 
    2929install_header: 
    30         cp $(LIB_NAME).h $(INC_INST_DIR) 
     30        install -d $(INC_INST_DIR) 
     31        install $(LIB_NAME).h $(INC_INST_DIR) 
    3132 
    3233install_static: static 
    33         cp $(STATIC_LIB) $(LIB_INST_DIR) 
     34        install -d $(LIB_INST_DIR) 
     35        install $(STATIC_LIB) $(LIB_INST_DIR) 
    3436 
    3537install_shared: shared 
    36         cp $(SHARED_LIB) $(LIB_INST_DIR) 
     38        install -d $(LIB_INST_DIR) 
     39        install $(SHARED_LIB) $(LIB_INST_DIR) 
    3740        ln -sf $(SO_NAME) $(LIB_INST_DIR)/$(LINK_NAME) 
    3841        ldconfig 
  • common/include/plugin.mak

    r15d141c r00fb3cb  
    1414 
    1515install: $(LIB_NAME) 
    16         cp $(LIB_NAME) $(INST_DIR) 
     16        install -d $(INST_DIR) 
     17        install $(LIB_NAME) $(INST_DIR) 
    1718 
    1819clean: 
  • wminput/Makefile.in

    r573bcd0 r00fb3cb  
    3030 
    3131install_configs: 
    32         mkdir -p $(WMINPUT_CONFIG_DIR) 
    33         cp configs/* $(WMINPUT_CONFIG_DIR) 
     32        install -d $(WMINPUT_CONFIG_DIR) 
     33        install configs/* $(WMINPUT_CONFIG_DIR) 
    3434        ln -sf $(WMINPUT_CONFIG_DIR)/acc_ptr \ 
    3535                $(WMINPUT_CONFIG_DIR)/default