diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-03-03 18:42:49 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-03-03 18:42:49 +0000 |
commit | a3864f056f0d0e1df4b5e4f5bc776af858c6a4d9 (patch) | |
tree | 636ba9b53029411dd58a7def4857b5deef11e6db /Test/Makefile.in | |
parent | 097e2d70cdd55b8f8dba9c6724564f78e45529cc (diff) | |
download | zsh-a3864f056f0d0e1df4b5e4f5bc776af858c6a4d9.tar.gz zsh-a3864f056f0d0e1df4b5e4f5bc776af858c6a4d9.tar.xz zsh-a3864f056f0d0e1df4b5e4f5bc776af858c6a4d9.zip |
zsh-workers/9982
Diffstat (limited to 'Test/Makefile.in')
-rw-r--r-- | Test/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Test/Makefile.in b/Test/Makefile.in index 107b61f58..4b68755a5 100644 --- a/Test/Makefile.in +++ b/Test/Makefile.in @@ -41,9 +41,14 @@ INSTALL = @INSTALL@ # ========== DEPENDENCIES FOR TESTING ========== check test: + if test -n "$(DLLD)"; then \ + cd $(dir_top) && \ + $(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \ + fi for f in $(sdir)/*.ztst; do \ - ../Src/zsh -f $(sdir)/ztst.zsh $$f; \ + $(dir_top)/Src/zsh -f $(sdir)/ztst.zsh $$f; \ done + rm -rf Modules # ========== DEPENDENCIES FOR CLEANUP ========== |