mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-07-11 04:41:32 +02:00
Peter Breitenlohner: Minor tweaks to some make targets.
This commit is contained in:
parent
d10789fddf
commit
c0832b6ffd
4 changed files with 15 additions and 6 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2001-08-12 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* Peter Breitenlohner: 14956: Makefile.in, Doc/Makefile.in,
|
||||||
|
Test/Makefile.in: Fix various interactions of DESTDIR and use of
|
||||||
|
multiple build targets, e.g. "make DESTDIR=/tmp all check info".
|
||||||
|
|
||||||
2001-08-09 Oliver Kiddle <opk@zsh.org>
|
2001-08-09 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
* 15599: Completion/Unix/Command/_user_admin: detect redhat or
|
* 15599: Completion/Unix/Command/_user_admin: detect redhat or
|
||||||
|
|
|
@ -271,7 +271,7 @@ install.info: texi
|
||||||
); then \
|
); then \
|
||||||
if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
|
if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
|
||||||
install-info --dir-file=$(DESTDIR)$(infodir)/dir \
|
install-info --dir-file=$(DESTDIR)$(infodir)/dir \
|
||||||
$(infodir)/$(tzsh).info; \
|
$(DESTDIR)$(infodir)/$(tzsh).info; \
|
||||||
else true; fi; \
|
else true; fi; \
|
||||||
rm -rf infodir; \
|
rm -rf infodir; \
|
||||||
exit 0; \
|
exit 0; \
|
||||||
|
|
|
@ -53,6 +53,9 @@ prep:
|
||||||
META-FAQ: FORCE
|
META-FAQ: FORCE
|
||||||
@cd Doc && $(MAKE) $(MAKEDEFS) ../META-FAQ
|
@cd Doc && $(MAKE) $(MAKEDEFS) ../META-FAQ
|
||||||
|
|
||||||
|
dvi ps html info:
|
||||||
|
@cd Doc && $(MAKE) $(MAKEDEFS) $@
|
||||||
|
|
||||||
# ========== DEPENDENCIES FOR INSTALLING ==========
|
# ========== DEPENDENCIES FOR INSTALLING ==========
|
||||||
|
|
||||||
# install stripped
|
# install stripped
|
||||||
|
|
|
@ -42,20 +42,20 @@ INSTALL = @INSTALL@
|
||||||
|
|
||||||
check test:
|
check test:
|
||||||
if test -n "$(DLLD)"; then \
|
if test -n "$(DLLD)"; then \
|
||||||
cd $(dir_top) && \
|
cd $(dir_top) && DESTDIR= \
|
||||||
$(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \
|
$(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \
|
||||||
fi
|
fi
|
||||||
for f in $(sdir)/*.ztst; do \
|
-for f in $(sdir)/$(TESTNUM)*.ztst; do \
|
||||||
$(dir_top)/Src/zsh -f $(sdir)/ztst.zsh $$f; \
|
$(dir_top)/Src/zsh +Z -f $(sdir)/ztst.zsh $$f; \
|
||||||
done
|
done
|
||||||
rm -rf Modules
|
rm -rf Modules .zcompdump
|
||||||
|
|
||||||
# ========== DEPENDENCIES FOR CLEANUP ==========
|
# ========== DEPENDENCIES FOR CLEANUP ==========
|
||||||
|
|
||||||
@CLEAN_MK@
|
@CLEAN_MK@
|
||||||
|
|
||||||
mostlyclean-here:
|
mostlyclean-here:
|
||||||
rm -rf *.tmp
|
rm -rf Modules .zcompdump *.tmp
|
||||||
|
|
||||||
distclean-here:
|
distclean-here:
|
||||||
rm -f Makefile
|
rm -f Makefile
|
||||||
|
|
Loading…
Reference in a new issue