Commit 016985e8 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Makefile, win32: fix sdk/ generation

parent 456bfb7a
...@@ -754,7 +754,7 @@ endif ...@@ -754,7 +754,7 @@ endif
cp -r $(destdir)/include "$(win32_destdir)/sdk" cp -r $(destdir)/include "$(win32_destdir)/sdk"
cp -r $(destdir)/lib/pkgconfig "$(win32_destdir)/sdk/lib" cp -r $(destdir)/lib/pkgconfig "$(win32_destdir)/sdk/lib"
for file in libvlc.dll.a libvlc.la libvlccore.dll.a libvlccore.la; do \ for file in libvlc.dll.a libvlc.la libvlccore.dll.a libvlccore.la; do \
cp -r $(destdir)/lib/$$file "$(win32_destdir)/sdk/lib"; done cp -rv $(destdir)/lib/$$file "$(win32_destdir)/sdk/lib"; done
if !HAVE_WIN64 if !HAVE_WIN64
if !HAVE_WINCE if !HAVE_WINCE
mkdir -p "$(win32_destdir)/sdk/activex" mkdir -p "$(win32_destdir)/sdk/activex"
...@@ -769,7 +769,7 @@ endif ...@@ -769,7 +769,7 @@ endif
if USE_PEFLAGS if USE_PEFLAGS
find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -print -o -name '*$(EXEEXT)' -print \) -exec $(PEFLAGS) --dynamicbase=true --nxcompat=true {} \; find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -print -o -name '*$(EXEEXT)' -print \) -exec $(PEFLAGS) --dynamicbase=true --nxcompat=true {} \;
endif endif
find $(win32_destdir) -type f \( -name '*.a' -or -name '*.la' \) -exec rm -rf {} \; find $(win32_destdir)/plugins/ -type f \( -name '*.a' -or -name '*.la' \) -exec rm -rvf {} \;
package-win-base: package-win-common package-win-base: package-win-common
find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -or -name '*$(EXEEXT)' \) | while read i; \ find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -or -name '*$(EXEEXT)' \) | while read i; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment