root/liboggz/trunk/Makefile.am

Revision 3676, 2.8 kB (checked in by conrad, 4 months ago)

Add bash-completion/oggz script. Source it from your .profile, or add it
to /etc/bash_completion.d to enable completion of oggz tool options and
codec names.

Line 
1 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2 #  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
4 #  PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR
5 #  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
6 #  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
7 #  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
8 #  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
9 #  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
10 #  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
11 #  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
12  
13 ## Process this file with automake to produce Makefile.in
14
15 DISTCHECK_CONFIGURE_FLAGS = --enable-gcc-werror
16
17 SUBDIRS = doc include src
18
19 # pkg-config
20 pkgconfigdir = $(libdir)/pkgconfig
21 pkgconfig_DATA = oggz.pc
22
23 # Extra files to distribute in the source tarball.
24 EXTRA_DIST = oggz.pc.in oggz-uninstalled.pc.in \
25         apache-install.sh \
26         bash-completion/oggz \
27         $(SYMBIAN_extra_dist) $(WIN32_extra_dist)
28
29 # Extra files to distribute for the Symbian build.
30 SYMBIAN_extra_dist = \
31         README.symbian \
32         symbian/bld.inf \
33         symbian/config.h \
34         symbian/liboggz.mmp
35
36 # Extra files to distribute for the Win32 build.
37 # Note that with Automake 1.9 it is possible to use wildcards instead of
38 # listing out files explicitly, ie.
39 #       win32/*.[ch] \
40 #       win32/*.def \
41 #       win32/*.dsp \
42 #       win32/*.dsw \
43 #       win32/VS200[35]/*.sln \
44 #       win32/VS200[35]/liboggz/*.vcproj \
45 # And with earlier versions, it is possible to use $(wildcard ...) if using
46 # GNU make.
47 # However, we list them out here for the sake of compatibility with earlier
48 # versions of Automake, and for portability with other vendors' make.
49 WIN32_extra_dist = \
50         README.win32 \
51         win32/Makefile \
52         win32/attgetopt.c \
53         win32/config.h \
54         win32/getopt.h \
55         win32/strsep.c \
56         win32/liboggz.def \
57         win32/liboggz.dsp \
58         win32/oggzdump.dsp \
59         win32/oggzed.dsp \
60         win32/oggzinfo.dsp \
61         win32/oggzmerge.dsp \
62         win32/liboggz.dsw \
63         win32/VS2003/liboggz.sln \
64         win32/VS2005/liboggz.sln \
65         win32/VS2003/liboggz/libogg_importer.vcproj \
66         win32/VS2003/liboggz/liboggz.vcproj \
67         win32/VS2003/liboggz/oggzdump.vcproj \
68         win32/VS2003/liboggz/oggzinfo.vcproj \
69         win32/VS2003/liboggz/oggzmerge.vcproj \
70         win32/VS2003/liboggz/oggzrip.vcproj \
71         win32/VS2003/liboggz/oggzscan.vcproj \
72         win32/VS2003/liboggz/oggzvalidate.vcproj \
73         win32/VS2005/liboggz/libogg_importer.vcproj \
74         win32/VS2005/liboggz/liboggz.vcproj \
75         win32/VS2005/liboggz/oggzdump.vcproj \
76         win32/VS2005/liboggz/oggzinfo.vcproj \
77         win32/VS2005/liboggz/oggzmerge.vcproj \
78         win32/VS2005/liboggz/oggzrip.vcproj \
79         win32/VS2005/liboggz/oggzscan.vcproj \
80         win32/VS2005/liboggz/oggzvalidate.vcproj \
81         win32/liboggz_bin_installer/liboggz_bin_installer.vdproj
Note: See TracBrowser for help on using the browser.