~ubuntu-branches/ubuntu/oneiric/ocaml-vorbis/oneiric

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis, Stefano Zacchiroli, Romain Beauxis
  • Date: 2008-04-17 01:38:25 UTC
  • mfrom: (1.1.8 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080417013825-c7rt2m2kzpxsqe3z
Tags: 0.4.1-1
[ Stefano Zacchiroli ]
* fix vcs-svn field to point just above the debian/ dir

[ Romain Beauxis ]
* New upstream release, now install .cmx file
* Changed maintainer to Debian OCaml Maintainers

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# Copyright (c) 2003 by the Savonet team
4
4
#
5
 
# $Id: Makefile 2593 2006-07-07 08:03:09Z dbaelde $
 
5
# $Id: Makefile 4694 2007-10-23 23:33:11Z smimram $
6
6
 
7
7
PROGNAME = ocaml-vorbis
8
8
DISTFILES = aclocal.m4 bootstrap CHANGES configure configure.ac \
15
15
all:
16
16
 
17
17
all opt byte install uninstall update:
18
 
        make -C src $@
 
18
        $(MAKE) -C src $@
19
19
 
20
20
doc:
21
 
        make -C src htdoc
 
21
        $(MAKE) -C src htdoc
22
22
        mkdir -p doc
23
23
        rm -rf doc/html
24
24
        mv src/doc/vorbis/html doc
25
25
        rm -rf src/doc
26
26
 
27
27
clean:
28
 
        -make -C src clean
29
 
        -make -C examples clean
 
28
        -$(MAKE) -C src clean
 
29
        -$(MAKE) -C examples clean
30
30
 
31
31
distclean: clean
32
32
        rm -rf autom4te.cache config.log config.status src/META src/Makefile
33
33
        rm -rf doc
34
 
        -make -C examples distclean
 
34
        -$(MAKE) -C examples distclean
35
35
 
36
36
dist: doc
37
37
        VERSION="$(shell grep 'AC_INIT' configure.ac)"; \