]> git.sesse.net Git - vlc/blob - extras/package/win32/package.mak
Fix win32 plugins packaging
[vlc] / extras / package / win32 / package.mak
1 if HAVE_WIN32
2 BUILT_SOURCES_distclean += \
3         extras/package/win32/NSIS/vlc.win32.nsi extras/package/win32/NSIS/spad.nsi
4 endif
5
6 win32_destdir=$(abs_top_builddir)/vlc-$(VERSION)
7 win32_debugdir=$(abs_top_builddir)/symbols-$(VERSION)
8 win32_xpi_destdir=$(abs_top_builddir)/vlc-plugin-$(VERSION)
9
10 7Z_OPTS=-t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on
11
12
13 if HAVE_WIN32
14 include extras/package/npapi.am
15 endif
16
17 if HAVE_WIN64
18 WINVERSION=vlc-$(VERSION)-win64
19 else
20 WINVERSION=vlc-$(VERSION)-win32
21 endif
22
23 package-win-install:
24         $(MAKE) install
25         touch $@
26
27
28 package-win-common: package-win-install build-npapi
29         mkdir -p "$(win32_destdir)"/
30
31 # Executables, major libs+manifests
32         find $(prefix) -maxdepth 4 \( -name "*$(LIBEXT)" -o -name "*$(EXEEXT)" \) -exec cp {} "$(win32_destdir)/" \;
33         cd $(top_srcdir)/extras/package/win32 && cp vlc$(EXEEXT).manifest libvlc$(LIBEXT).manifest "$(win32_destdir)/"
34
35 # Text files, clean them from mail addresses
36         for file in AUTHORS THANKS ; \
37                 do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(win32_destdir)/$${file}.txt"; \
38         done
39         for file in NEWS COPYING README; \
40                 do cp "$(srcdir)/$$file" "$(win32_destdir)/$${file}.txt"; \
41         done
42
43         cp $(srcdir)/share/icons/vlc.ico $(win32_destdir)
44         cp -r $(prefix)/lib/vlc/plugins $(win32_destdir)
45         -cp -r $(prefix)/share/locale $(win32_destdir)
46
47 if BUILD_LUA
48         mkdir -p $(win32_destdir)/lua/
49         cp -r $(prefix)/lib/vlc/lua/* $(prefix)/share/vlc/lua/* $(win32_destdir)/lua/
50 endif
51
52 if BUILD_SKINS
53         rm -fr $(win32_destdir)/skins
54         cp -r $(prefix)/share/vlc/skins2 $(win32_destdir)/skins
55 endif
56
57 if BUILD_OSDMENU
58         cp -r $(prefix)/share/vlc/osdmenu "$(win32_destdir)/"
59         for file in $(win32_destdir)/osdmenu/*.cfg; do \
60                 sed -e 's%share/osdmenu%osdmenu%g' -e 's%/%\\%g' "$$file" > "$${file}.tmp"; \
61                 mv -f "$${file}.tmp" "$${file}"; \
62         done
63 endif
64
65         cp "$(top_builddir)/npapi-vlc/activex/axvlc.dll.manifest" "$(win32_destdir)/"
66         cp "$(top_builddir)/npapi-vlc/installed/lib/axvlc.dll" "$(win32_destdir)/"
67         cp "$(top_builddir)/npapi-vlc/npapi/package/npvlc.dll.manifest" "$(win32_destdir)/"
68         cp "$(top_builddir)/npapi-vlc/installed/lib/npvlc.dll" "$(win32_destdir)/"
69
70 # Compiler shared DLLs, when using compilers built with --enable-shared
71 # The shared DLLs may not necessarily be in the first LIBRARY_PATH, we
72 # should check them all.
73         library_path_list=`$(CXX) -v /dev/null 2>&1 | grep ^LIBRARY_PATH|cut -d= -f2` ;\
74         IFS=':' ;\
75         for x in $$library_path_list ;\
76         do \
77                 cp "$$x/libstdc++-6.dll" "$$x/libgcc_s_sjlj-1.dll" "$(win32_destdir)/" ; true ;\
78         done
79
80 # SDK
81         mkdir -p "$(win32_destdir)/sdk/lib/"
82         cp -r $(prefix)/include "$(win32_destdir)/sdk"
83         cp -r $(prefix)/lib/pkgconfig "$(win32_destdir)/sdk/lib"
84         cd $(prefix)/lib && cp -rv libvlc.dll.a libvlc.la libvlccore.dll.a libvlccore.la "$(win32_destdir)/sdk/lib/"
85         $(DLLTOOL) -D libvlc.dll -l "$(win32_destdir)/sdk/lib/libvlc.lib" -d "$(top_builddir)/lib/.libs/libvlc.dll.def" "$(prefix)/bin/libvlc.dll"
86         $(DLLTOOL) -D libvlccore.dll -l "$(win32_destdir)/sdk/lib/libvlccore.lib" -d "$(top_builddir)/src/.libs/libvlccore.dll.def" "$(prefix)/bin/libvlccore.dll"
87
88         mkdir -p "$(win32_destdir)/sdk/activex/"
89         cd $(top_builddir)/npapi-vlc && cp activex/README.TXT share/test.html $(win32_destdir)/sdk/activex/
90
91 # Convert to DOS line endings
92         find $(win32_destdir) -type f \( -name "*xml" -or -name "*html" -or -name '*js' -or -name '*css' -or -name '*hosts' -or -iname '*txt' -or -name '*.cfg' -or -name '*.lua' \) -exec $(U2D) {} \;
93
94 # Enable DEP and ASLR for all the binaries
95         find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -print -o -name '*$(EXEEXT)' -print \) -exec $(top_srcdir)/extras/package/win32/peflags.pl {} \;
96
97 # Remove cruft
98         find $(win32_destdir)/plugins/ -type f \( -name '*.a' -or -name '*.la' \) -exec rm -rvf {} \;
99
100
101 package-win-strip: package-win-common
102         mkdir -p "$(win32_debugdir)"/
103         cd $(win32_destdir); find . -type f \( -name '*$(LIBEXT)' -or -name '*$(EXEEXT)' \) | while read i; \
104         do if test -n "$$i" ; then \
105             $(OBJCOPY) --only-keep-debug "$$i" "$(win32_debugdir)/`basename $$i.dbg`"; \
106             $(OBJCOPY) --strip-all "$$i" ; \
107             $(OBJCOPY) --add-gnu-debuglink="$(win32_debugdir)/`basename $$i.dbg`" "$$i" ; \
108           fi ; \
109         done
110
111
112 package-win32-webplugin-common: package-win-strip
113         mkdir -p "$(win32_xpi_destdir)/"
114         cp -r $(win32_destdir)/plugins/ "$(win32_xpi_destdir)/"
115         find $(prefix) -maxdepth 4 -name "*$(LIBEXT)" -exec cp {} "$(win32_xpi_destdir)/" \;
116         cp $(top_builddir)/npapi-vlc/npapi/package/npvlc.dll.manifest "$(win32_xpi_destdir)/plugins/"
117         cp "$(top_srcdir)/extras/package/win32/libvlc.dll.manifest" "$(win32_xpi_destdir)/plugins/"
118         rm -rf "$(win32_xpi_destdir)/plugins/gui/"
119
120
121 package-win32-xpi: package-win32-webplugin-common
122         cp $(top_builddir)/npapi-vlc/npapi/package/install.rdf "$(win32_xpi_destdir)/"
123         cd $(win32_xpi_destdir) && zip -r -9 "../vlc-$(VERSION).xpi" install.rdf plugins
124
125
126 package-win32-crx: package-win32-webplugin-common
127         cp $(top_builddir)/npapi-vlc/npapi/package/manifest.json "$(win32_xpi_destdir)/"
128         crxmake --pack-extension "$(win32_xpi_destdir)" \
129                 --extension-output "$(win32_destdir)/vlc-$(VERSION).crx" --ignore-file install.rdf
130
131
132 # nsis is a 32-bits installer, we need to build a 32bits DLL
133 $(win32_destdir)/NSIS/UAC.dll: extras/package/win32/NSIS/UAC/runas.cpp extras/package/win32/NSIS/UAC/uac.cpp
134         mkdir -p "$(win32_destdir)/NSIS/"
135 if HAVE_WIN64
136         i686-w64-mingw32-g++ $^ -shared -o $@ -lole32 -static-libstdc++ -static-libgcc
137         i686-w64-mingw32-strip $@
138 else
139         $(CXX) $^ -D_WIN32_IE=0x0601 -D__forceinline=inline -shared -o $@ -lole32 -static-libstdc++ -static-libgcc
140         $(STRIP) $@
141 endif
142
143
144 package-win32-exe: package-win-strip $(win32_destdir)/NSIS/UAC.dll
145 # Script installer
146         cp    $(top_builddir)/extras/package/win32/NSIS/vlc.win32.nsi "$(win32_destdir)/"
147         cp    $(top_builddir)/extras/package/win32/NSIS/spad.nsi      "$(win32_destdir)/"
148         cp -r $(srcdir)/extras/package/win32/NSIS/languages/    "$(win32_destdir)/"
149         cp -r $(srcdir)/extras/package/win32/NSIS/helpers/      "$(win32_destdir)/"
150         mkdir -p "$(win32_destdir)/NSIS/"
151         cp "$(top_srcdir)/extras/package/win32/NSIS/UAC.nsh" "$(win32_destdir)/NSIS/"
152
153 # Create package
154         if makensis -VERSION >/dev/null 2>&1; then \
155             MAKENSIS="makensis"; \
156         elif [ -x "/cygdrive/c/Program Files/NSIS/makensis" ]; then \
157             MAKENSIS="/cygdrive/c/Program\ Files/NSIS/makensis"; \
158         elif [ -x "$(PROGRAMFILES)/NSIS/makensis" ]; then \
159             MAKENSIS="$(PROGRAMFILES)/NSIS/makensis"; \
160         elif wine --version >/dev/null 2>&1; then \
161             MAKENSIS="wine C:/Program\ Files/NSIS/makensis.exe"; \
162         else \
163             echo 'Error: cannot locate makensis tool'; exit 1; \
164         fi; \
165         eval "$$MAKENSIS $(win32_destdir)/spad.nsi"; \
166         eval "$$MAKENSIS $(win32_destdir)/vlc.win32.nsi"
167
168 package-win32-zip: package-win-strip
169         rm -f -- $(WINVERSION).zip
170         zip -r -9 $(WINVERSION).zip vlc-$(VERSION) --exclude \*.nsi \*NSIS\* \*languages\* \*sdk\* \*helpers\* spad\*
171
172 package-win32-debug-zip: package-win-common
173         rm -f -- $(WINVERSION)-debug.zip
174         zip -r -9 $(WINVERSION)-debug.zip vlc-$(VERSION)
175
176 package-win32-7zip: package-win-strip
177         7z a $(7Z_OPTS) $(WINVERSION).7z vlc-$(VERSION)
178
179 package-win32-debug-7zip: package-win-common
180         7z a $(7Z_OPTS) $(WINVERSION)-debug.7z vlc-$(VERSION)
181
182 package-win32-cleanup:
183         rm -Rf $(win32_destdir) $(win32_debugdir) $(win32_xpi_destdir)
184
185 package-win32: package-win32-zip package-win32-7zip package-win32-exe package-win32-xpi
186
187 package-win32-debug: package-win32-debug-zip package-win32-debug-7zip
188
189
190 #######
191 # WinCE
192 #######
193 package-wince: package-win-strip
194         rm -f -- vlc-$(VERSION)-wince.zip
195         zip -r -9 vlc-$(VERSION)-wince.zip vlc-$(VERSION)
196
197 .PHONY: package-win-install package-win-common package-win-strip package-win32-webplugin-common package-win32-xpi package-win32-crx package-win32-exe package-win32-zip package-win32-debug-zip package-win32-7zip package-win32-debug-7zip package-win32-cleanup package-win32 package-win32-debug package-wince