Use INSTALL_PROGRAM. Added install-strip

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1160 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-01-14 07:11:26 +00:00
parent 04ec6e5d94
commit 0da419d602
16 changed files with 29 additions and 20 deletions

View File

@@ -12,6 +12,7 @@ DEFS = @DEFS@
CFLAGS = @CFLAGS@
LD_FLAGS = @LD_FLAGS@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
LIBS = @LIBS@
MKINSTALLDIRS = @top_srcdir@/mkinstalldirs
@@ -43,10 +44,10 @@ all: $(PROGS)
install: all
$(MKINSTALLDIRS) $(bindir)
for x in $(PROG_BIN); do \
$(INSTALL) $$x $(bindir)/`echo $$x | sed '$(transform)'`; \
$(INSTALL_PROGRAM) $$x $(bindir)/`echo $$x | sed '$(transform)'`; \
done
-for x in $(PROG_SUIDBIN); do \
$(INSTALL) -o root -m 04555 $$x $(bindir)/`echo $$x | sed '$(transform)'`; \
$(INSTALL_PROGRAM) -o root -m 04555 $$x $(bindir)/`echo $$x | sed '$(transform)'`; \
done
uninstall: