Commit 3a10ef8e4006dd7d26d0a9fbff2e704402b6dbb1

Authored by Perry Werneck
1 parent 62ffec71
Exists in master and in 1 other branch develop

Adding .def and .a files on windows builds.

Showing 1 changed file with 2 additions and 3 deletions   Show diff stats
Makefile.in
... ... @@ -201,12 +201,11 @@ $(BINRLS)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@: \
201 201 $(BINRLS)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \
202 202 $(foreach SRC, $(basename $(SOURCES)), $(OBJRLS)/$(SRC).o)
203 203  
204   - @$(MKDIR) `dirname $@`
  204 + @$(MKDIR) $(@D)
205 205 @echo $< ...
206 206  
207 207 @$(LD) \
208   - -shared \
209   - -Wl,-soname,$(@F) \
  208 + @DLL_LDFLAGS@ \
210 209 -o $@ \
211 210 $(LDFLAGS) \
212 211 $(foreach SRC, $(basename $(SOURCES)), $(OBJRLS)/$(SRC).o) \
... ...