diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-04-19 17:55:02 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-04-19 17:55:02 +0000 |
commit | 3b09ee496a95e26088b0e2f1164497c7219945ec (patch) | |
tree | 29043cd0a63806aaf80acfa8bd4a266001241a51 /Src/Makefile.in | |
parent | 28fe9e602780df7d023ce526d1ae3d00fb8583b5 (diff) | |
download | zsh-3b09ee496a95e26088b0e2f1164497c7219945ec.tar.gz zsh-3b09ee496a95e26088b0e2f1164497c7219945ec.tar.xz zsh-3b09ee496a95e26088b0e2f1164497c7219945ec.zip |
14041: reduce unnecessary linking for modules
Diffstat (limited to 'Src/Makefile.in')
-rw-r--r-- | Src/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Makefile.in b/Src/Makefile.in index 5126a2b7c..2fd48a151 100644 --- a/Src/Makefile.in +++ b/Src/Makefile.in @@ -82,11 +82,11 @@ EXTRAZSHOBJS = @EXTRAZSHOBJS@ zsh$(EXEEXT): $(@L@IBZSH) $(@L@STMP) $(MAIN_OBJS) zsh.export $(EXTRAZSHOBJS) rm -f $@ - $(@L@DRUNPATH) $(LINK) $(MAIN_OBJS) $(EXTRAZSHOBJS) $(@L@LIST) $(ZSH_@E@XPORT) $(@L@IBZSH) $(LIBS_M) $(LIBS_TERMCAP) $(LIBS_YP) $(LIBS) + $(@L@DRUNPATH) $(LINK) $(MAIN_OBJS) $(EXTRAZSHOBJS) $(@L@LIST) $(ZSH_@E@XPORT) $(@L@IBZSH) $(MAINLIBS) $(LIBZSH): $(LIBOBJS) $(NSTMP) rm -f $@ - $(DLLINK) $(LIBOBJS) $(NLIST) $(LIBS_M) $(LIBS_TERMCAP) $(LIBS) + $(DLLINK) $(LIBOBJS) $(NLIST) $(MAINLIBS) zsh.res.o: $(sdir)/zsh.rc $(sdir)/zsh.ico windres -O coff --include-dir $(sdir) -i $(sdir)/zsh.rc -o zsh.res.o |