Include LDFLAGS in build lines.
This commit is contained in:
parent
bd8eb7f2ca
commit
90d1877856
|
|
@ -16,7 +16,7 @@
|
||||||
# 59 Temple Place - Suite 330
|
# 59 Temple Place - Suite 330
|
||||||
# Boston, MA 02111-1307, USA
|
# 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
|
SHELL = /bin/sh
|
||||||
|
|
@ -79,10 +79,10 @@ ifeq (@WIN32@,yes)
|
||||||
# export and import library, and the last link makes a, ivl.exe
|
# export and import library, and the last link makes a, ivl.exe
|
||||||
# that really exports the things that the import library imports.
|
# that really exports the things that the import library imports.
|
||||||
vvp@EXEEXT@ libvpi.a: $O vvp.def
|
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 \
|
dlltool --dllname vvp@EXEEXT@ --def vvp.def \
|
||||||
--output-lib libvpi.a --output-exp vvp.exp
|
--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
|
else
|
||||||
libvpi.a: libvpi.c
|
libvpi.a: libvpi.c
|
||||||
$(CC) -c $(srcdir)/libvpi.c
|
$(CC) -c $(srcdir)/libvpi.c
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue