We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e32d48 commit 6aa020bCopy full SHA for 6aa020b
Makefile.win.rules.in
@@ -63,11 +63,16 @@ stdsubdirs:
63
done
64
65
# Rule for subdirs using standard win system (make -f Makefile.win)
66
+# Warning: for some strange reason the output DLL library after first
67
+# linking is corrupted. We have to delete the library
68
+# and to call linker again.
69
winsubdirs:
70
@list='$(WINSUBDIRS)'; \
71
for subdir in $$list; do \
72
echo $$subdir ; \
73
$(MAKE) -C $$subdir -f Makefile.win || exit 1 ; \
74
+ rm -f $$subdir/.libs/*.dll; \
75
+ $(MAKE) -C $$subdir -f Makefile.win || exit 1 ; \
76
77
78
# Rule instalation (using WINSUBDIRS)
0 commit comments