Use the original sample rate when utilizing FFmpeg 8-bit PCM codec.
[gnash.git] / plugin / Makefile.am
blob78f4662baf6f8b2e4267c8a770fa0d87b8c47cba
1 ## Process this file with automake to generate Makefile.in
2
3 #   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
4 #   Free Software Foundation, Inc.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 AUTOMAKE_OPTIONS = 
22 SUBDIRS =
24 if KPARTS3
25 SUBDIRS += klash
26 endif
28 if KPARTS4
29 SUBDIRS += klash4
30 endif
32 if NPAPI
33 SUBDIRS += npapi
34 if WIN32
35 SUBDIRS += win32
36 endif
37 if AMIGAOS4
38 SUBDIRS += aos4
39 endif
40 endif # NPAPI
42 # make sure these files make it into the distribution tarball.
43 DIST_SUBDIRS = klash klash4 npapi win32 aos4
45 install-plugin install-plugins: $(plugin_LTLIBRARIES) $(PKGLIB)
46 if !WIN32
47 if NPAPI
48         $(MAKE) -C npapi install-plugin
49 endif
50 if KPARTS4
51         $(MAKE) -C klash4 install-plugins
52 endif
53 if KPARTS3
54         $(MAKE) -C klash install-plugins
55 endif
56 else    # windoze
57         : # do nothing
58 endif   # end of if windoze
60 uninstall-plugins: 
61 if NPAPI
62         $(MAKE) -C npapi $@
63 endif
64 if KPARTS4
65         $(MAKE) -C klash4 $@
66 endif
67 if KPARTS3
68         $(MAKE) -C klash $@
69 endif