Changeset 2900 for trunk/gsdl


Ignore:
Timestamp:
2001-12-20T14:35:59+13:00 (22 years ago)
Author:
jrm21
Message:

Modified Makefile.in files to use autodetected configure's install program
instead of hard-coding "install" program. (eg solaris uses ginstall).

Location:
trunk/gsdl/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/db2txt/Makefile.in

    r2371 r2900  
    3939LIBS = @GDBM_LIBPATH@ -lgdbm @LIBS@
    4040GSDLOS = @gsdlos@
    41 
     41INSTALL = @INSTALL@
    4242 
    4343COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
     
    6767
    6868install: $(EXEC)
    69     install -d ../../bin/$(GSDLOS)
    70     install -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
     69    $(INSTALL) -d ../../bin/$(GSDLOS)
     70    $(INSTALL) -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
    7171
    7272distclean:
  • trunk/gsdl/src/getpw/Makefile.in

    r2276 r2900  
    3838LIBS = @LIBS@
    3939GSDLOS = @gsdlos@
    40 
     40INSTALL = @INSTALL@
    4141 
    4242LINK = $(CXX) $(LDFLAGS) -o $@
     
    6262
    6363install: $(EXEC)
    64     install -d ../../bin/$(GSDLOS)
    65     install -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
     64    $(INSTALL) -d ../../bin/$(GSDLOS)
     65    $(INSTALL) -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
    6666
    6767distclean:
  • trunk/gsdl/src/hashfile/Makefile.in

    r1802 r2900  
    3737LIBS = ../../lib/gsdllib.a
    3838GSDLOS = @gsdlos@
    39 
     39INSTALL = @INSTALL@
    4040 
    4141COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
     
    6363
    6464install: $(EXEC)
    65     install -d ../../bin/$(GSDLOS)
    66     install -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
     65    $(INSTALL) -d ../../bin/$(GSDLOS)
     66    $(INSTALL) -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
    6767
    6868distclean:
  • trunk/gsdl/src/phind/generate/Makefile.in

    r2867 r2900  
    3636LIBS = @LIBS@
    3737GSDLOS = @gsdlos@
    38 
     38INSTALL = @INSTALL@
    3939
    4040.SUFFIXES: .cpp .o
     
    5151
    5252install : $(EXEC)
    53     install -d ../../../bin/$(GSDLOS)
    54     install -m 775 -s $(EXEC) ../../../bin/$(GSDLOS)
     53    $(INSTALL) -d ../../../bin/$(GSDLOS)
     54    $(INSTALL) -m 775 -s $(EXEC) ../../../bin/$(GSDLOS)
    5555
    5656distclean:
  • trunk/gsdl/src/recpt/Makefile.in

    r2724 r2900  
    8686GDBM_LIBS=@GDBM_LIBPATH@ -lgdbm
    8787LIBS = $(GDBM_LIBS) @LIBS@
    88 
    8988GSDLOS = @gsdlos@
     89INSTALL = @INSTALL@
    9090
    9191COMPILE = $(CC) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
     
    265265
    266266install:
    267     install -m 755 -s library ../../cgi-bin
     267    $(INSTALL) -m 755 -s library ../../cgi-bin
    268268
    269269depend:
  • trunk/gsdl/src/txt2db/Makefile.in

    r2371 r2900  
    3838LIBS = ../../lib/gsdllib.a ../../packages/mg/lib/unitool.o @GDBM_LIBPATH@ -lgdbm @LIBS@
    3939GSDLOS = @gsdlos@
    40 
     40INSTALL = @INSTALL@
    4141 
    4242COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CCFLAGS)
     
    7171
    7272install: $(EXEC)
    73     install -d ../../bin/$(GSDLOS)
    74     install -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
     73    $(INSTALL) -d ../../bin/$(GSDLOS)
     74    $(INSTALL) -m 755 -s $(EXEC) ../../bin/$(GSDLOS)
    7575
    7676distclean:
Note: See TracChangeset for help on using the changeset viewer.