Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash
[gnash.git] / Makefile.am
blob36844b55b0b69fccd026dca4e2f7267c20071ced
1
2 #   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
18 ## Process this file with automake to produce Makefile.in
19 # no-portability allows us to use GNU make variable assignments
20 # without automake complaining.
21 AUTOMAKE_OPTIONS = 1.6.0 -Wno-portability
23 ACLOCAL_AMFLAGS = -I macros -I cygnal
24 noinst_SCRIPT = autogen.sh
27 ## Any custom ./configure switch we want to be
28 ## given at 'make distcheck' time should go here
30 ## We set plugins install dirs to a user-writable 
31 ## and likely unused directory for now to avoid
32 ## permission problems and unexpected unistalls
33 ## from home dir. Ideally we should put them somewhere
34 ## under ${prefix} to make the uninstall check effective
35 ## (and I believe it should actually be the default when
36 ## --prefix is given, but that's another story --strk)
38 ## We also want to build everything possible, since we're
39 ## testing builds.
40 DISTCHECK_CONFIGURE_FLAGS = \
41         --with-plugins-install=prefix \
42         --enable-extensions=all \
43         --enable-gui=all \
44         --disable-testsuite
45 #--enable-cygnal
47 if CYGNAL
48 CYGNAL_DIR = cygnal
49 endif
51 STD_DIRS = \
52         libbase \
53         libmedia \
54         libsound \
55         libcore \
56         librender \
57         gui \
58         plugin \
59         $(CYGNAL_DIR) \
60         utilities \
61         doc \
62         po \
63         $(NULL)
65 if LIBLTDL2
66 LIBLTDLDIR = libltdl
67 endif
69 if HAVE_VAAPI
70 VAAPI_DIR = libvaapi
71 endif
73 SUBDIRS = $(LIBLTDLDIR) $(VAAPI_DIR) $(STD_DIRS)
74 DIST_SUBDIRS = $(STD_DIRS) cygnal extensions testsuite libltdl libvaapi
76 if TESTSUITE
77 SUBDIRS += testsuite
78 endif
80 if BUILD_EXTENSIONS
81 SUBDIRS += extensions
82 endif
84 # man_MANS = doc/gnash.1 doc/gprocessor.1 doc/dumpshm.1 soldumper.1
86 EXTRA_DIST =  \
87         README \
88         README.git \
89         autogen.sh \
90         config.rpath \
91         macros/incllist macros/libslist \
92         ChangeLog-0.8.0 \
93         ChangeLog-0.8.1 \
94         ChangeLog-0.8.2 \
95         ChangeLog-0.8.3 \
96         ChangeLog-0.8.4 \
97         ChangeLog-0.8.5 \
98         ChangeLog-0.8.6 \
99         ChangeLog-0.8.7 \
100         ChangeLog-0.8.8 \
101         packaging/deb.am \
102         packaging/snapshot.am \
103         packaging/alp.am \
104         packaging/ipkg.am \
105         packaging/bsd.am \
106         packaging/rpm.am \
107         packaging/gnash.xpm \
108         packaging/klash.xpm \
109         revno.h
112 # dist-hook:
113 #       @test -d "$(distdir)/packaging" || $(mkinstalldirs) "$(distdir)/packaging"
114 #       cp -p $(srcdir)/*.am $(top_distdir)/packaging/
116 CLEANFILES = .configline
117 DISTCLEANFILES = revno.h .lastmod
118 MAINTAINERCLEANFILES = revno.h .lastmod
119 BUILT_SOURCES = revno.h .configline
122 # Extract info from the repository to include in the build.
123 # If top source dir is not a git repository or git is not installed,
124 # keep the current revno.h file (which should be part of any distribution).
125 # It's primarily used by the testsuites and when building binary packages
126 # from multiple branches.
128 # This ia a big hack around makes's built in dependency checking, as the
129 # key file here isn't part of the normal files. In the source tree for
130 # developers, the .git/index files changes on any commits or pulls. We
131 # only want to regenerate this file if that file changes, so we have to
132 # do the dependency check ourselves.
133 revno.h:
134         @if test \! -e .lastmod; then \
135           touch -t 197001010000 .lastmod; \
136         fi; \
137         if test -d $(top_srcdir)/.git -a x"${GIT}" != x; then \
138           if test $(top_srcdir)/.git/index -nt .lastmod; then \
139             echo "Getting build info for revno.h"; \
140             revno="`cd $(top_srcdir) ; $(GIT) rev-list HEAD | wc -l`"; \
141             comm_id="`cd $(top_srcdir) ; $(GIT) rev-parse --short HEAD`"; \
142             nick="`cd $(top_srcdir) ; $(GIT) branch | grep '^\*' | cut -d ' ' -f 2`"; \
143           fi \
144         else \
145           revno="$(NOW)"; \
146           comm_id="none"; \
147           nick="master"; \
148         fi; \
149         if test \! -z "$${revno}"; then \
150           echo "Generating revno.h ($${nick} $${revno} $${comm_id})"; \
151           echo "static const char* BRANCH_REVNO  = \"$${revno}\";" > revno.h; \
152           echo "static const char* BRANCH_NICK = \"$${nick}\";" >> revno.h; \
153           echo "static const char* COMMIT_ID = \"$${comm_id}\";" >> revno.h; \
154           touch .lastmod; \
155         fi
157 .configline: revno.h
158         -@rm -f .configline
159         @head config.log | grep " .*/configure " | sed -e 's:^  . .*configure ::' > .configline
162 # Precompiled header support
164 include $(srcdir)/pch.am
167 # Binary tarball packaging
169 include $(srcdir)/packaging/snapshot.am
172 # Build an RPM package
174 include $(srcdir)/packaging/rpm.am
176 # Build a Debian/Ubuntu .deb GNU/Linux package
177 include $(srcdir)/packaging/deb.am
180 # Build a Debian Familiar .ipk GNU/Linux package. These are always
181 # cross compiled, typically for the ARM or XScale.
183 include $(srcdir)/packaging/ipkg.am
186 # Access Linux Platform support.
188 include $(srcdir)/packaging/alp.am
191 # BSD package building
193 include $(srcdir)/packaging/bsd.am
196 # Mozille/Firefox XPI support
198 include $(srcdir)/packaging/xpi.am
200 mudflap:
201         @echo "Rebuilding with GCC Mudflap support"
202         $(MAKE) CXXFLAGS="$(CXXFLAGS) -fmudflapth" LDFLAGS="$(LDFLAGS) -lmudflapth"
204 mudflap-check:
205         @echo "Rechecking with GCC Mudflap support"
206         $(MAKE) check CXXFLAGS="$(CXXFLAGS) -fmudflap" LDFLAGS="$(LDFLAGS) -lmudflap"
208 # Set a few variables to what features we selected so we can dump it with the
209 # test of the config
210 dumpconfig:
211         @echo ""
212         @echo "Building in directories: $(SUBDIRS)"
213         @echo "Some directories may be excluded from the build"
214         @uname -a
215         $(CXX) -v
216         @echo "CXXFLAGS: $(CXXFLAGS)"
217         @echo ""
218         @echo "Image decoding support..."
219         @echo " JPEG_CFLAGS is $(JPEG_CFLAGS)"
220         @echo " JPEG_LIBS is $(JPEG_LIBS)"
221         @echo " PNG_CFLAGS is $(PNG_CFLAGS)"
222         @echo " PNG_LIBS is $(PNG_LIBS)"
223         @echo " GIF_CFLAGS is $(GIF_CFLAGS)"
224         @echo " GIF_LIBS is $(GIF_LIBS)"
225         @echo "Audio decoding support..."
226 if USE_GST_ENGINE
227         @echo " GSTREAMER_CFLAGS is $(GSTREAMER_CFLAGS)"
228         @echo " GSTREAMER_LIBS is $(GSTREAMER_LIBS)"
229         @echo " GSTREAMER_PBUTILS_CFLAGS is $(GSTREAMER_PBUTILS_CFLAGS)"
230         @echo " GSTREAMER_PBUTILS_LIBS is $(GSTREAMER_PBUTILS_LIBS)"
231 endif
232 if USE_FFMPEG_ENGINE
233         @echo " FFMPEG_CFLAGS is $(FFMPEG_CFLAGS)"
234         @echo " FFMPEG_LIBS is $(FFMPEG_LIBS)"
235         @echo " OGG_CFLAGS is $(OGG_CFLAGS)"
236         @echo " OGG_LIBS is $(OGG_LIBS)"
237 endif
238 if HAVE_SPEEX
239         @echo " SPEEX_CFLAGS is $(SPEEX_CFLAGS)"
240         @echo " SPEEXDSP_CFLAGS is $(SPEEXDSP_CFLAGS)"
241         @echo " SPEEX_LIBS is $(SPEEX_LIBS)"
242         @echo " SPEEXDSP_LIBS is $(SPEEXDSP_LIBS)"
243 endif
244         @echo "GUI Toolkit decoding support..." 
245         @echo " SDL_CFLAGS is $(SDL_CFLAGS)"
246         @echo " SDL_LIBS is $(SDL_LIBS)"
247 if BUILD_KDE3_GUI
248         @echo " KDE3_CFLAGS is $(KDE3_CFLAGS)"
249         @echo " KDE3_LIBS is $(KDE3_LIBS)"
250 endif
251 if BUILD_KDE4_GUI
252         @echo " KDE4_CFLAGS is $(KDE4_CFLAGS)"
253         @echo " KDE4_LIBS is $(KDE4_LIBS)"
254 endif
255 if BUILD_QT3_GUI
256         @echo " QT3_CFLAGS is $(QT3_CFLAGS)"
257         @echo " QT3_LIBS is $(QT3_LIBS)"
258 endif
259 if BUILD_QT4_GUI
260         @echo " QT4_CFLAGS is $(QT4_CFLAGS)"
261         @echo " QT4_LIBS is $(QT4_LIBS)"
262 endif
263 if BUILD_QTOPIA3_GUI
264         @echo " QTOPIA3_CFLAGS is $(QTOPIA3_CFLAGS)"
265         @echo " QTOPIA3_LIBS is $(QTOPIA3_LIBS)"
266 endif
267 if BUILD_QTOPIA4_GUI
268         @echo " QTOPIA4_CFLAGS is $(QTOPIA4_CFLAGS)"
269         @echo " QTOPIA4_LIBS is $(QTOPIA4_LIBS)"
270 endif
271 if BUILD_FLTK_GUI
272         @echo " FLTK2_CFLAGS is $(FLTK2_CFLAGS)"
273         @echo " FLTK2_LIBS is $(FLTK2_LIBS)"
274         @echo " XFT_CFLAGS is $(XFT_CFLAGS)"
275         @echo " XFT_LIBS is $(XFT_LIBS)"
276 endif
277 if HAIKU
278         @echo " HAIKU_LIBS is $(HAIKU_LIBS)"
279 endif
280 if BUILD_GTK_GUI
281         @echo " GTK2_CFLAGS is $(GTK2_CFLAGS)"
282         @echo " GTK2_LIBS is $(GTK2_LIBS)"
283         @echo " PANGO_CFLAGS is $(PANGO_CFLAGS)"
284         @echo " PANGO_LIBS is $(PANGO_LIBS)"
285         @echo " ATK_CFLAGS is $(ATK_CFLAGS)"
286         @echo " ATK_LIBS is $(ATK_LIBS)"
287 endif
288         @echo " X11_CFLAGS is $(X11_CFLAGS)"
289         @echo " X11_LIBS is $(X11_LIBS)"
290         @echo "Support libraries..."
291         @echo " INCLTDL $(INCLTDL) "
292         @echo " LIBLTDL $(LIBLTDL) "
293         @echo " GLIB_CFLAGS is $(GLIB_CFLAGS)"
294         @echo " GLIB_LIBS is $(GLIB_LIBS)"
295         @echo " Z_CFLAGS is $(Z_CFLAGS)"
296         @echo " Z_LIBS is $(Z_LIBS)"
297         @echo " FREETYPE_CFLAGS is $(FREETYPE2_CFLAGS)"
298         @echo " FREETYPE_LIBS is $(FREETYPE2_LIBS)"
299         @echo " FONTCONFIG_CFLAGS is $(FONTCONFIG_CFLAGS)"
300         @echo " FONTCONFIG_LIBS is $(FONTCONFIG_LIBS)"
301         @echo " LIBINTL is $(LIBINTL)"
302 if HAVE_DMALLOC
303         @echo " DMALLOC_CFLAGS is $(DMALLOC_CFLAGS)"
304         @echo " DMALLOC_LIBS is $(DMALLOC_LIBS)"
305 endif
306 if BUILD_MYSQL_EXT
307         @echo " MYSQL_CFLAGS is $(MYSQL_CFLAGS)"
308         @echo " MYSQL_LIBS is $(MYSQL_LIBS)"
309 endif
310         @echo " PTHREAD_CFLAGS is $(PTHREAD_CFLAGS)"
311         @echo " PTHREAD_LIBS is $(PTHREAD_LIBS)"
312         @echo " CURL_CFLAGS is $(CURL_CFLAGS)"
313         @echo " CURL_LIBS is $(CURL_LIBS)"
314         @echo " BOOST_CFLAGS is $(BOOST_CFLAGS)"
315         @echo " BOOST_LIBS is $(BOOST_LIBS)"
316         @if test -n "$(BOOST_CYGNAL_LIBS)"; then \
317           echo "        BOOST_CYGNAL_LIBS is $(BOOST_CYGNAL_LIBS)"; \
318         fi
319 if ENABLE_MING
320         @echo " MING_VERSION_CODE $(MING_VERSION_CODE) "
321         @echo " MING_LIBS $(MING_LIBS) "
322         @echo " MING_CFLAGS $(MING_CFLAGS) "
323         @echo " MAKESWF $(MAKESWF) "
324 endif
325 if ENABLE_MTASC
326         @echo " MTASC $(MTASC)"
327         @echo " MTASC CLASSPATH $(MTASC_CLASSPATH)"
328 endif
329 if ENABLE_HAXE
330         @echo " HAXE $(HAXE)"
331         @echo " HAXE CLASSPATH $(HAXE_CLASSPATH)"
332 endif
333 if ENABLE_SWFMILL
334         @echo " SWFMILL $(SWFMILL) "
335         @echo " SWFMILL_VERSION_CODE $(SWFMILL_VERSION) "
336 endif
337 if ENABLE_SWFC
338         @echo " SWFC $(SWFC) "
339 endif
340 if ENABLE_SWFDEC_TESTSUITE
341         @echo " SWFDEC_TESTSUITE $(SWFDEC_TESTSUITE)"
342 endif
343 if ENABLE_HTTP_TESTSUITE
344         @echo " HTTP_TESTSUITE $(HTTP_TESTSUITE)"
345 endif
346 if ENABLE_RED5_TESTING
347         @echo " RED5_HOST $(RED5_HOST)"
348 endif
349         @echo "Graphics support..."     
350 if BUILD_CAIRO_RENDERER
351         @echo " CAIRO_CFLAGS is $(CAIRO_CFLAGS)"
352         @echo " CAIRO_LIBS is $(CAIRO_LIBS)"
353 endif
354 if BUILD_OGL_RENDERER
355         @echo " GLEXT_CFLAGS is $(GLEXT_CFLAGS)"
356         @echo " GLEXT_LIBS is $(GLEXT_LIBS)"
357         @echo " OPENGL_CFLAGS is $(OPENGL_CFLAGS)"
358         @echo " OPENGL_LIBS is $(OPENGL_LIBS)"
359 endif
360 if BUILD_AGG_RENDERER
361         @echo " AGG_CFLAGS is $(AGG_CFLAGS)"
362         @echo " AGG_LIBS is $(AGG_LIBS)"
363 endif
364         @echo ""
365         @echo "A blank value for CFLAGS means the header is installed in the"
366         @echo "default system header location. All the LIBS should have a"
367         @echo "legit value"
368         @echo ""
369         @echo "Configurable options are:"
370         @echo " Media handlers: $(MEDIA_CONFIG)"
371         @echo " Renderer engines: $(RENDERER_CONFIG)"
372         @echo " Hardware Acceleration: $(HWACCEL_CONFIG)"
374 if BUILD_SSL
375         @echo " SSL_CFLAGS is $(SSL_CFLAGS)"
376         @echo " SSL_LIBS is $(SSL_LIBS)"
377 endif
378 if BUILD_SSH
379         @echo " SSH_CFLAGS is $(SSH_CFLAGS)"
380         @echo " SSH_LIBS is $(SSH_LIBS)"
381 endif
382 if BUILD_GTK_GUI
383 if HAVE_XV
384         @echo " Supported GUI: GTK (+XVideo)"
385 else
386         @echo " Supported GUI: GTK"
387 endif
388 endif
389 if BUILD_DUMP_GUI
390         @echo " Supported GUI: Dump"
391 endif
392 if BUILD_KDE3_GUI
393         @echo " Supported GUI: KDE3"
394 endif
395 if BUILD_KDE4_GUI
396         @echo " Supported GUI: KDE4"
397 endif
398 if BUILD_QTOPIA3_GUI
399         @echo " Supported GUI: QTOPIA3"
400 endif
401 if BUILD_QTOPIA4_GUI
402         @echo " Supported GUI: QTOPIA4"
403 endif
404 if BUILD_SDL_GUI
405         @echo " Supported GUI: SDL"
406 endif
407 if BUILD_FLTK_GUI
408         @echo " Supported GUI: FLTK"
409 endif
410 if BUILD_AQUA_GUI
411         @echo " Supported GUI: AQUA"
412 endif
413 if BUILD_FB_GUI
414         @echo " Supported GUI: FB"
415 endif
416 if BUILD_AMIGAOS4_GUI
417        @echo " Supported GUI: AMIGAOS4"
418 endif
419 if BUILD_HAIKU_GUI
420         @echo " Supported GUI: Haiku"
421 endif
422 if JEMALLOC
423         @echo " Using jemalloc memory manager"
424 endif
426         @if test -n "$(EXTENSIONS_LIST)" ; then \
427           echo "        Extensions added are: $(EXTENSIONS_LIST)"; \
428         fi
429         @if test -n "$(SECURITY_LIST)" ; then \
430           echo "        Security features enabled are: $(SECURITY_LIST)"; \
431         fi
432         @if test -n "$(STATISTICS_LIST)" ; then \
433           echo "        Statistics features enabled are: $(STATISTICS_LIST)"; \
434         fi
435 if KPARTS3
436         @echo " KPARTS 3.x (KDE) plugin enabled"
437         @echo "   KPARTS 3.x plugin install dir: $(KDE_PLUGINDIR)"
438         @echo "   KPARTS 3.x service install dir: $(KDE_SERVICESDIR)"
439         @echo "   KPARTS 3.x config dir: ${KDE_CONFIGDIR}"
440         @echo "   KPARTS 3.x appsdata dir: ${KDE_APPSDATADIR}"
441 else
442         @echo " KPARTS 3.x (KDE) plugin disabled"
443 endif
444 if KPARTS4
445         @echo " KPARTS 4.x (KDE) plugin enabled"
446         @echo "   KPARTS 4.x plugin install dir: $(KDE4_PLUGINDIR)"
447         @echo "   KPARTS 4.x service install dir: $(KDE4_SERVICESDIR)"
448         @echo "   KPARTS 4.x config dir: ${KDE4_CONFIGDIR}"
449         @echo "   KPARTS 4.x appsdata dir: ${KDE4_APPSDATADIR}"
450 else
451         @echo " KPARTS 4.x (KDE) plugin disabled"
452 endif
454 if NPAPI
455         @echo " NPAPI (Mozilla) plugin enabled"
456         @echo "   NPAPI plugin install dir: $(FIREFOX_PLUGINS)"
457 else
458         @echo " NPAPI (Mozilla) plugin disabled"
459 endif
460 if USE_PYTHON
461         @echo " PYTHON support enabled"
462 else
463         @echo " PYTHON support disabled"
464 endif
466 if TESTSUITE
467 check-local:
468         $(MAKE) anal
470 anal testreport checksum:
471         $(srcdir)/testsuite/anaylse-results.sh
472 endif
474 .PHONY : dumpconfig \
475         revno.h \
476         anal \
477         testreport \
478         checksum \
479         check \
480         mudflap \
481         mudflap-check \
482         install-plugins \
483         uninstall-plugins \
484         install-plugin \
485         apidoc
487 install-plugins install-plugin uninstall-plugins install-pkglib:
488         $(MAKE) -C plugin $@
490 apidoc:
491         $(MAKE) -C doc $@
493 pkgconfigdir = $(libdir)/pkgconfig
494 pkgconfig_DATA = \
495         gnash.pc \
496         $(NULL)
498 SWFDEC_REPO=git://anongit.freedesktop.org/git/swfdec/swfdec
499 SWFDEC_MOUNT=$(srcdir)/testsuite/swfdec/src
500 fetch-swfdec:
501         if test -d "$(SWFDEC_MOUNT)"; then \
502             cd "$(SWFDEC_MOUNT)" && git pull && git branch -v; \
503         else \
504             git clone $(SWFDEC_REPO) "$(SWFDEC_MOUNT)"; \
505         fi 
507 package:
508         @if test -f /etc/debian_version; then $(MAKE) deb; \
509           else if test -f /etc/redhat-release; then $(MAKE) rpm; \
510             else echo "Gnash will not be packaged for this platform"; \
511         fi;fi
513 packageclean:
514         -test -z "$(CLEANFILES)" || rm -rf $(CLEANFILES)
516 # these files are created when building packages
517 CLEANFILES += *.deb rpmbuild *.dsc *.gz *.bz2 *.changes deb-copy-stamp gnash*git*