~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/libsndfile/reconfigure.mk

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/make -f
2
 
 
3
 
# The auto tools MUST be run in the following order:
4
 
#
5
 
#       1.  aclocal
6
 
#       2.  libtoolize (if you use libtool)
7
 
#       3.  autoconf
8
 
#       4.  autoheader (if you use autoheader)
9
 
#       5.  automake (if you use automake)
10
 
#
11
 
# The following makefile runs these in the correct order according to their
12
 
# dependancies. It also makes up for Mac OSX's fucked-upped-ness.
13
 
 
14
 
ACLOCAL = aclocal
15
 
 
16
 
ifneq ($(shell uname -s), Darwin)
17
 
  LIBTOOLIZE = libtoolize
18
 
else
19
 
  # Fuck Apple! Why the hell did they rename libtoolize????
20
 
  LIBTOOLIZE = glibtoolize
21
 
  # Fink sucks as well, but this seems necessary.
22
 
  ACLOCAL_INC = -I /sw/share/aclocal
23
 
endif
24
 
 
25
 
genfiles : config.status
26
 
        (cd src && make genfiles)
27
 
        (cd tests && make genfiles)
28
 
 
29
 
config.status: configure src/config.h.in Makefile.in src/Makefile.in tests/Makefile.in
30
 
        ./configure --enable-gcc-werror
31
 
 
32
 
configure: ltmain.sh
33
 
        autoconf
34
 
 
35
 
Makefile.in: Makefile.am        
36
 
        automake --copy --add-missing
37
 
 
38
 
src/Makefile.in: src/Makefile.am        
39
 
        automake --copy --add-missing
40
 
 
41
 
tests/Makefile.in: tests/Makefile.am    
42
 
        automake --copy --add-missing
43
 
 
44
 
src/config.h.in: configure
45
 
        autoheader
46
 
 
47
 
libtool ltmain.sh: aclocal.m4
48
 
        $(LIBTOOLIZE) --copy --force
49
 
        
50
 
# Need to re-run aclocal whenever acinclude.m4 is modified.
51
 
aclocal.m4: acinclude.m4
52
 
        $(ACLOCAL) $(ACLOCAL_INC)
53
 
 
54
 
clean:
55
 
        rm -f libtool ltmain.sh aclocal.m4 Makefile.in src/config.h.in config.cache config.status
56
 
        find . -name .deps -type d -exec rm -rf {} \;
57
 
 
58
 
 
59
 
# Do not edit or modify anything in this comment block.
60
 
# The arch-tag line is a file identity tag for the GNU Arch 
61
 
# revision control system.
62
 
#
63
 
# arch-tag: 2b02bfd0-d5ed-489b-a554-2bf36903cca9