]> git.sesse.net Git - vlc/blob - projects/mozilla/Makefile.am
Distribute position.h for mozilla plugin
[vlc] / projects / mozilla / Makefile.am
1 ###############################################################################
2 # Building the Mozilla plugin
3 ###############################################################################
4
5 MOSTLYCLEANFILES = 
6 CLEANFILES = $(BUILT_SOURCES)
7 EXTRA_DIST = $(DIST_sources) npvlc_rc.rc.in COPYING npvlc.dll.manifest
8
9 SOURCES_mozilla_common = \
10         vlcshell.cpp \
11         vlcshell.h \
12         vlcplugin.cpp \
13         vlcplugin.h \
14         control/npolibvlc.cpp \
15         control/npolibvlc.h \
16         control/nporuntime.cpp \
17         control/nporuntime.h \
18         control/position.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.la \
27                                    $(top_builddir)/src/libvlccore.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) --include-dir $(srcdir) -i $< -o $@
55
56 else
57 if HAVE_DARWIN
58
59 #
60 # MacOS X
61 #
62
63 lib_LTLIBRARIES = npvlc.la
64
65 SOURCES_support = support/npmac.cpp
66 CPPFLAGS_mozilla_EXTRA = -I. -I$(top_builddir) -I$(srcdir)/../include -c \
67         -F/System/Library/Frameworks/CoreFoundation.framework $(moz_CFLAGS) \
68         -I/Developer/Headers/FlatCarbon -fno-common -fpascal-strings \
69         -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -DXP_MACOSX=1 \
70         -DNO_X11=1 -DUSE_SYSTEM_CONSOLE=1 -pipe -fmessage-length=0 \
71         -include mozilla-config.h
72 LDFLAGS_mozilla_EXTRA = -no-undefined -bundle -Wl,-read_only_relocs -Wl,suppress \
73         -Wl,-headerpad_max_install_names -shrext $(LIBEXT) -Wl,-framework,Carbon -Wl,-framework,System
74
75 npvlc_la_SOURCES = $(SOURCES_mozilla_common) $(SOURCES_support)
76 npvlc_la_CFLAGS = `$(VLC_CONFIG) --cflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
77 npvlc_la_CXXFLAGS = `$(VLC_CONFIG) --cxxflags mozilla` $(CPPFLAGS_mozilla_EXTRA) 
78 npvlc_la_DEPENDENCIES = $(LIBRARIES_libvlc)
79 npvlc_la_LDFLAGS = `$(VLC_CONFIG) --ldflags mozilla` -module -avoid-version \
80                                    $(LDFLAGS_mozilla_EXTRA)
81 npvlc_la_LIBADD = `$(VLC_CONFIG) -libs mozilla` $(LIBRARIES_libvlc)
82
83
84 noinst_DATA = npvlc.rsrc VLC\ Plugin.plugin
85 MOSTLYCLEANFILES += npvlc.rsrc
86 CLEANFILES += VLC\ Plugin.plugin
87
88 npvlc.rsrc: vlc.r
89         /Developer/Tools/Rez -useDF /Developer/Headers/FlatCarbon/Types.r $< -o $@
90
91 #
92 # Plugin uses shared libraries that are located relatively through @executable_path,
93 # which unfortunately references the path of the App using the Plugin, rather than the
94 # Plugin itself. Since this Plugin should always be installed in '/Library/Internet Plug-Ins',
95 # it is safer to force dylibs to locate dependents through a fixed path
96 #
97 define FIXEXECPATH
98         otool -L "$$dylib" | \
99         awk -v libdylib="$$dylib" ' \
100         /@executable_path/ { \
101             newpath=$$1 ; \
102             sub("@executable_path","/Library/Internet Plug-Ins/VLC Plugin.plugin/Contents/MacOS",newpath) ; \
103             print "install_name_tool -change \""$$1"\" \""newpath"\" \""libdylib"\"" ; \
104         }' | sh -x
105 endef
106
107 VLC\ Plugin.plugin: npvlc.rsrc $(lib_LTLIBRARIES)
108         rm -Rf "$@"
109         $(INSTALL) -d "VLC-Plugin.plugin/Contents/MacOS/lib"
110         $(INSTALL) -d "VLC-Plugin.plugin/Contents/Resources"
111         ACTION="release-makefile" PRODUCT="VLC-Plugin.plugin" src_dir=$(srcdir) build_dir=$(top_builddir) sh "$(top_srcdir)/projects/macosx/framework/Pre-Compile.sh"
112         $(INSTALL) npvlc.rsrc "VLC-Plugin.plugin/Contents/Resources/VLC Plugin.rsrc"
113         $(INSTALL) "$(top_builddir)/extras/package/macosx/plugin/Info.plist" "VLC-Plugin.plugin/Contents/Info.plist"
114         mv "VLC-Plugin.plugin" "VLC Plugin.plugin"
115         find "VLC Plugin.plugin" -type d -exec chmod ugo+rx '{}' \;
116         find "VLC Plugin.plugin" -type f -exec chmod ugo+r '{}' \;
117
118 # uncomment if dependencies on XPCOM libs is sought
119 #       if test -d "$(MOZILLA_SDK_PATH)/lib"; then \
120 #         for i in "$(MOZILLA_SDK_PATH)"/lib/*.dylib ; do \
121 #           dylib="$(srcdir)/$@/Contents/MacOS/`basename $${i}`" ; \
122 #           $(INSTALL) -m 644 "$${i}" "$$dylib" ; \
123 #           $(FIXEXECPATH); \
124 #         done ; \
125 #       fi
126
127 else
128
129 #
130 # UNIX/Others platforms
131 #
132
133 CPPFLAGS_mozilla_EXTRA = -DDATA_PATH=\"$(pkgdatadir)\"
134
135 npvlc_LTLIBRARIES = libvlcplugin.la
136
137 npvlc = libvlcplugin$(LIBEXT)
138 npvlcdir = $(libdir)/mozilla/plugins
139 SOURCES_support = support/npunix.c
140
141 libvlcplugin_la_SOURCES = $(SOURCES_mozilla_common) $(SOURCES_support)
142 libvlcplugin_la_CFLAGS = `$(VLC_CONFIG) --cflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
143 libvlcplugin_la_CXXFLAGS = `$(VLC_CONFIG) --cxxflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
144 libvlcplugin_la_LDFLAGS = `$(VLC_CONFIG) --ldflags mozilla` -module -avoid-version -shrext $(LIBEXT)
145 libvlcplugin_la_LIBADD = $(LIBRARIES_libvlc) `$(VLC_CONFIG) -libs mozilla`
146 # automake gets confused by the ../..
147 libvlcplugin_la_DEPENDENCIES = $(AM_LIBADD) 
148 endif
149 endif
150 endif
151