]> git.sesse.net Git - vlc/blob - extras/package/win32/package.mak
8710e6f49e4c212aa2d0b614433740bb62ed25ef
[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         cp "$(top_builddir)/npapi-vlc/activex/axvlc.dll.manifest" "$(win32_destdir)/"
58         cp "$(top_builddir)/npapi-vlc/installed/lib/axvlc.dll" "$(win32_destdir)/"
59         cp "$(top_builddir)/npapi-vlc/npapi/package/npvlc.dll.manifest" "$(win32_destdir)/"
60         cp "$(top_builddir)/npapi-vlc/installed/lib/npvlc.dll" "$(win32_destdir)/"
61
62 # Compiler shared DLLs, when using compilers built with --enable-shared
63 # The shared DLLs may not necessarily be in the first LIBRARY_PATH, we
64 # should check them all.
65         library_path_list=`$(CXX) -v /dev/null 2>&1 | grep ^LIBRARY_PATH|cut -d= -f2` ;\
66         IFS=':' ;\
67         for x in $$library_path_list ;\
68         do \
69                 cp "$$x/libstdc++-6.dll" "$$x/libgcc_s_sjlj-1.dll" "$(win32_destdir)/" ; true ;\
70         done
71
72 # SDK
73         mkdir -p "$(win32_destdir)/sdk/lib/"
74         cp -r $(prefix)/include "$(win32_destdir)/sdk"
75         cp -r $(prefix)/lib/pkgconfig "$(win32_destdir)/sdk/lib"
76         cd $(prefix)/lib && cp -rv libvlc.la libvlccore.la "$(win32_destdir)/sdk/lib/"
77         cd $(prefix)/lib && cp -rv libvlc.dll.a "$(win32_destdir)/sdk/lib/libvlc.lib"
78         cd $(prefix)/lib && cp -rv libvlccore.dll.a "$(win32_destdir)/sdk/lib/libvlccore.lib"
79         $(DLLTOOL) -D libvlc.dll -l "$(win32_destdir)/sdk/lib/libvlc.lib" -d "$(top_builddir)/lib/.libs/libvlc.dll.def" "$(prefix)/bin/libvlc.dll"
80         $(DLLTOOL) -D libvlccore.dll -l "$(win32_destdir)/sdk/lib/libvlccore.lib" -d "$(top_builddir)/src/.libs/libvlccore.dll.def" "$(prefix)/bin/libvlccore.dll"
81
82         mkdir -p "$(win32_destdir)/sdk/activex/"
83         cd $(top_builddir)/npapi-vlc && cp activex/README.TXT share/test/test.html $(win32_destdir)/sdk/activex/
84
85 # Convert to DOS line endings
86         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) {} \;
87
88 # Enable DEP and ASLR for all the binaries
89         find $(win32_destdir) -type f \( -name '*$(LIBEXT)' -print -o -name '*$(EXEEXT)' -print \) -exec $(top_srcdir)/extras/package/win32/peflags.pl {} \;
90
91 # Remove cruft
92         find $(win32_destdir)/plugins/ -type f \( -name '*.a' -or -name '*.la' \) -exec rm -rvf {} \;
93
94
95 package-win-strip: package-win-common
96         mkdir -p "$(win32_debugdir)"/
97         cd $(win32_destdir); find . -type f \( -name '*$(LIBEXT)' -or -name '*$(EXEEXT)' \) | while read i; \
98         do if test -n "$$i" ; then \
99             $(OBJCOPY) --only-keep-debug "$$i" "$(win32_debugdir)/`basename $$i.dbg`"; \
100             $(OBJCOPY) --strip-all "$$i" ; \
101             $(OBJCOPY) --add-gnu-debuglink="$(win32_debugdir)/`basename $$i.dbg`" "$$i" ; \
102           fi ; \
103         done
104
105
106 package-win32-webplugin-common: package-win-strip
107         mkdir -p "$(win32_xpi_destdir)/"
108         cp -r $(win32_destdir)/plugins/ "$(win32_xpi_destdir)/"
109         find $(prefix) -maxdepth 4 -name "*$(LIBEXT)" -exec cp {} "$(win32_xpi_destdir)/" \;
110         cp $(top_builddir)/npapi-vlc/npapi/package/npvlc.dll.manifest "$(win32_xpi_destdir)/plugins/"
111         cp "$(top_srcdir)/extras/package/win32/libvlc.dll.manifest" "$(win32_xpi_destdir)/plugins/"
112         rm -rf "$(win32_xpi_destdir)/plugins/gui/"
113
114
115 package-win32-xpi: package-win32-webplugin-common
116         cp $(top_builddir)/npapi-vlc/npapi/package/install.rdf "$(win32_xpi_destdir)/"
117         cd $(win32_xpi_destdir) && zip -r -9 "../vlc-$(VERSION).xpi" install.rdf plugins
118
119
120 package-win32-crx: package-win32-webplugin-common
121         cp $(top_builddir)/npapi-vlc/npapi/package/manifest.json "$(win32_xpi_destdir)/"
122         crxmake --pack-extension "$(win32_xpi_destdir)" \
123                 --extension-output "$(win32_destdir)/vlc-$(VERSION).crx" --ignore-file install.rdf
124
125
126 # nsis is a 32-bits installer, we need to build a 32bits DLL
127 $(win32_destdir)/NSIS/UAC.dll: extras/package/win32/NSIS/UAC/runas.cpp extras/package/win32/NSIS/UAC/uac.cpp
128         mkdir -p "$(win32_destdir)/NSIS/"
129 if HAVE_WIN64
130         i686-w64-mingw32-g++ $^ -shared -o $@ -lole32 -static-libstdc++ -static-libgcc
131         i686-w64-mingw32-strip $@
132 else
133         $(CXX) $^ -D_WIN32_IE=0x0601 -D__forceinline=inline -shared -o $@ -lole32 -static-libstdc++ -static-libgcc
134         $(STRIP) $@
135 endif
136
137
138 package-win32-exe: package-win-strip $(win32_destdir)/NSIS/UAC.dll
139 # Script installer
140         cp    $(top_builddir)/extras/package/win32/NSIS/vlc.win32.nsi "$(win32_destdir)/"
141         cp    $(top_builddir)/extras/package/win32/NSIS/spad.nsi      "$(win32_destdir)/"
142         cp -r $(srcdir)/extras/package/win32/NSIS/languages/    "$(win32_destdir)/"
143         cp -r $(srcdir)/extras/package/win32/NSIS/helpers/      "$(win32_destdir)/"
144         mkdir -p "$(win32_destdir)/NSIS/"
145         cp "$(top_srcdir)/extras/package/win32/NSIS/UAC.nsh" "$(win32_destdir)/NSIS/"
146
147 # Create package
148         if makensis -VERSION >/dev/null 2>&1; then \
149             MAKENSIS="makensis"; \
150         elif [ -x "/cygdrive/c/Program Files/NSIS/makensis" ]; then \
151             MAKENSIS="/cygdrive/c/Program\ Files/NSIS/makensis"; \
152         elif [ -x "$(PROGRAMFILES)/NSIS/makensis" ]; then \
153             MAKENSIS="$(PROGRAMFILES)/NSIS/makensis"; \
154         elif wine --version >/dev/null 2>&1; then \
155             MAKENSIS="wine C:/Program\ Files/NSIS/makensis.exe"; \
156         else \
157             echo 'Error: cannot locate makensis tool'; exit 1; \
158         fi; \
159         eval "$$MAKENSIS $(win32_destdir)/spad.nsi"; \
160         eval "$$MAKENSIS $(win32_destdir)/vlc.win32.nsi"
161
162 package-win32-zip: package-win-strip
163         rm -f -- $(WINVERSION).zip
164         zip -r -9 $(WINVERSION).zip vlc-$(VERSION) --exclude \*.nsi \*NSIS\* \*languages\* \*sdk\* \*helpers\* spad\*
165
166 package-win32-debug-zip: package-win-common
167         rm -f -- $(WINVERSION)-debug.zip
168         zip -r -9 $(WINVERSION)-debug.zip vlc-$(VERSION)
169
170 package-win32-7zip: package-win-strip
171         7z a $(7Z_OPTS) $(WINVERSION).7z vlc-$(VERSION)
172
173 package-win32-debug-7zip: package-win-common
174         7z a $(7Z_OPTS) $(WINVERSION)-debug.7z vlc-$(VERSION)
175
176 package-win32-cleanup:
177         rm -Rf $(win32_destdir) $(win32_debugdir) $(win32_xpi_destdir)
178
179 package-win32: package-win32-zip package-win32-7zip package-win32-exe package-win32-xpi
180
181 package-win32-debug: package-win32-debug-zip package-win32-debug-7zip
182
183
184 #######
185 # WinCE
186 #######
187 package-wince: package-win-strip
188         rm -f -- vlc-$(VERSION)-wince.zip
189         zip -r -9 vlc-$(VERSION)-wince.zip vlc-$(VERSION)
190
191 .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