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