fix the Makefile to do the for loops the automake way.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1828 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-06-01 22:32:05 +00:00
parent 7aff0e212b
commit 7a21760c61
3 changed files with 7 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ Wall:
install: all
$(MKINSTALLDIRS) $(bindir)
PROG_BIN=$(PROG_BIN); for x in $$PROG_BIN; do \
PROG_BIN='$(PROG_BIN)'; for x in $$PROG_BIN; do \
$(INSTALL_PROGRAM) $$x $(bindir)/`echo $$x | sed '$(transform)'`; \
done
$(MKINSTALLDIRS) $(mandir)/man1
@@ -61,7 +61,7 @@ install: all
done)
uninstall:
PROG_BIN=$(PROG_BIN); for x in $$PROG_BIN; do \
PROG_BIN='$(PROG_BIN)'; for x in $$PROG_BIN; do \
rm -f $(bindir)/`echo $$x | sed '$(transform)'`; \
done
for x in $(MAN1); do \