From 90d1877856b0b6f38e3949dce97792ac3f5a4d0f Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 8 Mar 2003 20:59:23 +0000 Subject: [PATCH] Include LDFLAGS in build lines. --- vvp/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vvp/Makefile.in b/vvp/Makefile.in index 443264a5e..2471799eb 100644 --- a/vvp/Makefile.in +++ b/vvp/Makefile.in @@ -16,7 +16,7 @@ # 59 Temple Place - Suite 330 # Boston, MA 02111-1307, USA # -#ident "$Id: Makefile.in,v 1.46 2003/03/04 03:13:57 steve Exp $" +#ident "$Id: Makefile.in,v 1.47 2003/03/08 20:59:23 steve Exp $" # # SHELL = /bin/sh @@ -79,10 +79,10 @@ ifeq (@WIN32@,yes) # export and import library, and the last link makes a, ivl.exe # that really exports the things that the import library imports. vvp@EXEEXT@ libvpi.a: $O vvp.def - $(CXX) -o vvp@EXEEXT@ $O $(dllib) $(LIBS) + $(CXX) -o vvp@EXEEXT@ $(LDFLAGS) $O $(dllib) $(LIBS) dlltool --dllname vvp@EXEEXT@ --def vvp.def \ --output-lib libvpi.a --output-exp vvp.exp - $(CXX) -o vvp@EXEEXT@ vvp.exp $O $(dllib) $(LIBS) + $(CXX) -o vvp@EXEEXT@ vvp.exp $(LDFLAGS) $O $(dllib) $(LIBS) else libvpi.a: libvpi.c $(CC) -c $(srcdir)/libvpi.c