replaced mkdirhier-sh by mkinstalldirs

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@861 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-10-19 05:26:09 +00:00
parent edb66c9354
commit 9931d3dc3e
10 changed files with 21 additions and 21 deletions

View File

@@ -18,7 +18,7 @@ LD_FLAGS = @LD_FLAGS@
LIBS = $(XLIBS) @LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
MKDIRHIER = @top_srcdir@/mkdirhier-sh
MKINSTALLDIRS = @top_srcdir@/mkinstalldirs
prefix = @prefix@
exec_prefix = $(prefix)
@@ -46,9 +46,9 @@ Wall:
$(CC) -c $(CPPFLAGS) $(DEFS) -I../.. -I../../include -I$(srcdir) -I$(srcdir)/../../include $(CFLAGS) $<
install: all
$(MKDIRHIER) $(bindir)
$(MKINSTALLDIRS) $(bindir)
for x in $(PROG_BIN); do $(INSTALL) $$x $(bindir); done
$(MKDIRHIER) $(prefix)/man/man1
$(MKINSTALLDIRS) $(prefix)/man/man1
(cd $(srcdir); \
for x in $(MAN1); do \
$(INSTALL_DATA) $$x $(prefix)/man/man1/`echo $$x | sed 's/\.man/.1/'`; \