From 43e8a08c97b1e4d6ac8cf83930f96533799f039e Mon Sep 17 00:00:00 2001 From: J Varshney Date: Sat, 5 Apr 2008 15:03:26 -0800 Subject: [PATCH] Tell make to find ivl.def and vvp.def in srcdir. --- Makefile.in | 4 ++-- vvp/Makefile.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.in b/Makefile.in index 28668c04d..e74d3d946 100644 --- a/Makefile.in +++ b/Makefile.in @@ -124,9 +124,9 @@ ifeq (@WIN32@,yes) # The first step makes an ivl.exe that dlltool can use to make an # export and import library, and the last link makes a, ivl.exe # that really exports the things that the import library imports. -ivl@EXEEXT@: $O ivl.def +ivl@EXEEXT@: $O $(srcdir)/ivl.def $(CXX) -o ivl@EXEEXT@ $O $(dllib) @EXTRALIBS@ - dlltool --dllname ivl@EXEEXT@ --def ivl.def \ + dlltool --dllname ivl@EXEEXT@ --def $(srcdir)/ivl.def \ --output-lib libivl.a --output-exp ivl.exp $(CXX) $(LDFLAGS) -o ivl@EXEEXT@ ivl.exp $O $(dllib) @EXTRALIBS@ else diff --git a/vvp/Makefile.in b/vvp/Makefile.in index d57233851..65cab97f4 100644 --- a/vvp/Makefile.in +++ b/vvp/Makefile.in @@ -85,9 +85,9 @@ ifeq (@WIN32@,yes) # The first step makes an ivl.exe that dlltool can use to make an # 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 +vvp@EXEEXT@ libvpi.a: $O $(srcdir)/vvp.def $(CXX) -o vvp@EXEEXT@ $(LDFLAGS) $O $(dllib) $(LIBS) - dlltool --dllname vvp@EXEEXT@ --def vvp.def \ + dlltool --dllname vvp@EXEEXT@ --def $(srcdir)/vvp.def \ --output-lib libvpi.a --output-exp vvp.exp $(CXX) $(LDFLAGS) -o vvp@EXEEXT@ vvp.exp $(LDFLAGS) $O $(dllib) $(LIBS) else