]> git.sesse.net Git - vlc/blob - projects/mozilla/Makefile.am
mowilla: Fix webplugin distribution on Mac OS X.
[vlc] / projects / mozilla / Makefile.am
1 ###############################################################################
2 # Building the Mozilla plugin
3 ###############################################################################
4
5 MOSTLYCLEANFILES = 
6 CLEANFILES = $(BUILT_SOURCES)
7 EXTRA_DIST = $(DIST_sources) install.js npvlc_rc.rc.in vlc.r
8
9 SOURCES_mozilla_common = \
10         vlcshell.cpp \
11         vlcplugin.cpp \
12         vlcplugin.h \
13         control/npolibvlc.cpp \
14         control/npolibvlc.h \
15         control/nporuntime.cpp \
16         control/nporuntime.h \
17         support/classinfo.h
18
19 DIST_sources = $(SOURCES_mozilla_common) \
20         support/npwin.cpp support/npmac.cpp support/npunix.c
21
22 if BUILD_MOZILLA
23
24 LIBRARIES_libvlc = $(top_builddir)/src/libvlc.la \
25                                    $(top_builddir)/src/libvlccore.la
26
27 if HAVE_WIN32
28
29 # Under Win32, Mozilla plugins need to be named NP******.DLL, but under Unix
30 # the common naming scheme is lib******plugin.so. Also, we need npwin.cpp
31 # under Win32 and npunix.c under Unix.
32 #
33 lib_LTLIBRARIES = npvlc.la
34
35 SOURCES_support = support/npwin.cpp
36 CPPFLAGS_mozilla_EXTRA = -DXP_WIN -DXP_WIN32
37 LDFLAGS_mozilla_EXTRA = -no-undefined -Wl,--kill-at -Wl,$(DATA_npvlc_rc)
38
39 npvlc_la_SOURCES = $(SOURCES_mozilla_common) $(SOURCES_support)
40 npvlc_la_CFLAGS = `$(VLC_CONFIG) --cflags mozilla` $(CPPFLAGS_mozilla_extra)
41 npvlc_la_CXXFLAGS = `$(VLC_CONFIG) --cxxflags mozilla` $(CPPFLAGS_mozilla_extra)
42 npvlc_la_DEPENDENCIES = $(DATA_npvlc_rc) $(LIBRARIES_libvlc)
43 npvlc_la_LDFLAGS = `$(VLC_CONFIG) --ldflags mozilla` -module -avoid-version \
44                                    $(LDFLAGS_mozilla_EXTRA)
45 npvlc_la_LIBADD = `$(VLC_CONFIG) -libs mozilla` $(LIBRARIES_libvlc)
46
47 DATA_npvlc_rc = $(noinst_npvlc_rc_DATA)
48 noinst_npvlc_rc_DATA = npvlc_rc.$(OBJEXT)
49 noinst_npvlc_rcdir =
50
51 npvlc_rc.$(OBJEXT): npvlc_rc.rc
52         $(WINDRES) --include-dir $(srcdir) -i $< -o $@
53
54 else
55 if HAVE_DARWIN
56
57 #
58 # MacOS X
59 #
60
61 lib_LTLIBRARIES = npvlc.la
62
63 SOURCES_support = support/npmac.cpp
64 CPPFLAGS_mozilla_EXTRA = -I. -I$(top_builddir) -I$(srcdir)/../include -c \
65         -F/System/Library/Frameworks/CoreFoundation.framework $(moz_CFLAGS) \
66         -I/Developer/Headers/FlatCarbon -fno-common -fpascal-strings \
67         -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -DXP_MACOSX=1 \
68         -DNO_X11=1 -DUSE_SYSTEM_CONSOLE=1 -pipe -fmessage-length=0 \
69         -include mozilla-config.h
70 LDFLAGS_mozilla_EXTRA = -no-undefined -bundle -Wl,-read_only_relocs -Wl,suppress \
71         -Wl,-headerpad_max_install_names -shrext $(LIBEXT) -Wl,-framework,Carbon -Wl,-framework,System
72
73 npvlc_la_SOURCES = $(SOURCES_mozilla_common) $(SOURCES_support)
74 npvlc_la_CFLAGS = `$(VLC_CONFIG) --cflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
75 npvlc_la_CXXFLAGS = `$(VLC_CONFIG) --cxxflags mozilla` $(CPPFLAGS_mozilla_EXTRA) 
76 npvlc_la_DEPENDENCIES = $(LIBRARIES_libvlc)
77 npvlc_la_LDFLAGS = `$(VLC_CONFIG) --ldflags mozilla` -module -avoid-version \
78                                    $(LDFLAGS_mozilla_EXTRA)
79 npvlc_la_LIBADD = `$(VLC_CONFIG) -libs mozilla` $(LIBRARIES_libvlc)
80
81
82 noinst_DATA = npvlc.rsrc VLC\ Plugin.plugin
83 MOSTLYCLEANFILES += npvlc.rsrc
84 CLEANFILES += VLC\ Plugin.plugin
85
86 npvlc.rsrc: $(srcdir)/vlc.r
87         /Developer/Tools/Rez -useDF /Developer/Headers/FlatCarbon/Types.r $< -o $@
88
89 #
90 # Plugin uses shared libraries that are located relatively through @executable_path,
91 # which unfortunately references the path of the App using the Plugin, rather than the
92 # Plugin itself. Since this Plugin should always be installed in '/Library/Internet Plug-Ins',
93 # it is safer to force dylibs to locate dependents through a fixed path
94 #
95 define FIXEXECPATH
96         otool -L "$$dylib" | \
97         awk -v libdylib="$$dylib" ' \
98         /@executable_path/ { \
99             newpath=$$1 ; \
100             sub("@executable_path","/Library/Internet Plug-Ins/VLC Plugin.plugin/Contents/MacOS",newpath) ; \
101             print "install_name_tool -change \""$$1"\" \""newpath"\" \""libdylib"\"" ; \
102         }' | sh -x
103 endef
104
105 VLC\ Plugin.plugin: npvlc.rsrc $(lib_LTLIBRARIES)
106         rm -Rf "$@"
107         $(INSTALL) -d "$@/Contents/MacOS/lib"
108         $(INSTALL) -d "$@/Contents/Resources"
109         $(INSTALL) npvlc.rsrc "$@/Contents/Resources/VLC Plugin.rsrc"
110         cp -r "$(top_srcdir)/extras/package/macosx/plugin/English.lproj" "$@/Contents/Resources/"
111         cp -r "$(top_builddir)/extras/package/macosx/plugin/English.lproj" "$@/Contents/Resources/"
112         $(INSTALL) "$(top_builddir)/extras/package/macosx/plugin/Info.plist" "$@/Contents/Info.plist"
113    ACTION="release-makefile" PRODUCT="VLC Plugin.plugin" src_dir=$(srcdir) build_dir=$(top_builddir) sh $(srcdir)/projects/macosx/framework/Pre-Compile.sh
114
115 # uncomment if dependencies on XPCOM libs is sought
116 #       if test -d "$(MOZILLA_SDK_PATH)/lib"; then \
117 #         for i in "$(MOZILLA_SDK_PATH)"/lib/*.dylib ; do \
118 #           dylib="$(srcdir)/$@/Contents/MacOS/`basename $${i}`" ; \
119 #           $(INSTALL) -m 644 "$${i}" "$$dylib" ; \
120 #           $(FIXEXECPATH); \
121 #         done ; \
122 #       fi
123
124 else
125
126 #
127 # UNIX/Others platforms
128 #
129
130 CPPFLAGS_mozilla_EXTRA = -DDATA_PATH=\"$(pkgdatadir)\"
131
132 npvlc_LTLIBRARIES = libvlcplugin.la
133
134 npvlc = libvlcplugin$(LIBEXT)
135 npvlcdir = $(libdir)/mozilla/plugins
136 SOURCES_support = support/npunix.c
137
138 libvlcplugin_la_SOURCES = $(SOURCES_mozilla_common) $(SOURCES_support)
139 libvlcplugin_la_CFLAGS = `$(VLC_CONFIG) --cflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
140 libvlcplugin_la_CXXFLAGS = `$(VLC_CONFIG) --cxxflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
141 libvlcplugin_la_LDFLAGS = `$(VLC_CONFIG) --ldflags mozilla` -module -avoid-version -shrext $(LIBEXT)
142 libvlcplugin_la_LIBADD = $(LIBRARIES_libvlc) `$(VLC_CONFIG) -libs mozilla`
143 # automake gets confused by the ../..
144 libvlcplugin_la_DEPENDENCIES = $(AM_LIBADD) 
145 endif
146 endif
147 endif
148