Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/libvorbis-1.2.0/Makefile.am @ 16

Last change on this file since 16 was 16, checked in by landauf, 16 years ago

added libvorbis

File size: 929 bytes
Line 
1## Process this file with automake to produce Makefile.in
2
3AUTOMAKE_OPTIONS = 1.6 foreign dist-zip dist-bzip2
4
5SUBDIRS = lib include doc examples vq
6
7m4datadir = $(datadir)/aclocal
8m4data_DATA = vorbis.m4
9
10pkgconfigdir = $(libdir)/pkgconfig
11pkgconfig_DATA = vorbis.pc vorbisenc.pc vorbisfile.pc
12
13EXTRA_DIST = \
14        CHANGES COPYING \
15        todo.txt autogen.sh \
16        libvorbis.spec libvorbis.spec.in \
17        vorbis.m4 \
18        vorbis.pc.in vorbisenc.pc.in vorbisfile.pc.in \
19        vorbis-uninstalled.pc.in \
20        vorbisenc-uninstalled.pc.in \
21        vorbisfile-uninstalled.pc.in \
22        doc examples symbian vq \
23        macos macosx win32
24
25
26DISTCHECK_CONFIGURE_FLAGS = --enable-docs
27
28dist-hook:
29        for item in $(EXTRA_DIST); do \
30          if test -d $$item; then \
31            echo -n "cleaning $$item dir for distribution..."; \
32            rm -rf `find $(distdir)/$$item -name .svn`; \
33            echo "OK"; \
34          fi; \
35        done
36
37debug:
38        $(MAKE) all CFLAGS="@DEBUG@"
39
40profile:
41        $(MAKE) all CFLAGS="@PROFILE@"
Note: See TracBrowser for help on using the repository browser.