diff options
Diffstat (limited to 'win32/Makefile.am')
-rw-r--r-- | win32/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/win32/Makefile.am b/win32/Makefile.am index 6d35a8bac1..d2c15e42f2 100644 --- a/win32/Makefile.am +++ b/win32/Makefile.am @@ -1,6 +1,8 @@ EXTRA_DIST = \ dummy.la \ libemiscwidgets.def \ + libetable.def \ + libetext.def \ libevolution-addressbook.def \ libevolution-calendar.def \ libevolution-mail.def \ @@ -9,6 +11,8 @@ EXTRA_DIST = \ if OS_WIN32 BOOTSTRAP_LIBS = \ libemiscwidgets.la \ + libetable.la \ + libetext.la \ libevolution-addressbook.la \ libevolution-calendar.la \ libevolution-mail.la \ @@ -27,6 +31,16 @@ libemiscwidgets.la: dummy.la libemiscwidgets.def mkdir -p .libs dlltool --output-lib=.libs/libemiscwidgets.dll.a --dllname=libemiscwidgets-0.dll --input-def=libemiscwidgets.def +libetable.la: dummy.la libetable.def + sed -e s!%DLL%!libetable! -e s!%LIB%!libetable! -e s!%PFX%!$(prefix)! <dummy.la >$@ + mkdir -p .libs + dlltool --output-lib=.libs/libetable.dll.a --dllname=libetable.dll --input-def=libetable.def + +libetext.la: dummy.la libetext.def + sed -e s!%DLL%!libetext! -e s!%LIB%!libetext! -e s!%PFX%!$(prefix)! <dummy.la >$@ + mkdir -p .libs + dlltool --output-lib=.libs/libetext.dll.a --dllname=libetext.dll --input-def=libetext.def + libevolution-addressbook.la: dummy.la libevolution-addressbook.def sed -e s!%DLL%!libevolution-addressbook! -e s!%LIB%!libevolution-addressbook! -e s!%PFX%!$(prefix)! <dummy.la >$@ mkdir -p .libs |