~ubuntu-branches/ubuntu/hardy/stfl/hardy

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2007-03-31 12:16:20 UTC
  • Revision ID: james.westby@ubuntu.com-20070331121620-odsy6awweg3frwgw
Tags: 0.8-1
* New upstream release.
* Changed maintainer address.
* Added README.Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
#export DH_VERBOSE=1
 
3
 
 
4
build: build-stamp
 
5
build-stamp:
 
6
        dh_testdir
 
7
 
 
8
        # Add here commands to compile the package.
 
9
        $(MAKE)
 
10
 
 
11
        touch $@
 
12
 
 
13
clean:
 
14
        dh_testdir
 
15
        dh_testroot
 
16
        rm -f build-stamp
 
17
 
 
18
        # Add here commands to clean up after the build process.
 
19
        -$(MAKE) clean
 
20
 
 
21
        dh_clean
 
22
 
 
23
install: build
 
24
        dh_testdir
 
25
        dh_testroot
 
26
        dh_clean -k
 
27
        dh_installdirs
 
28
 
 
29
        $(MAKE) prefix=$(CURDIR)/debian/libstfl-dev/usr install
 
30
 
 
31
binary-indep: build install
 
32
 
 
33
binary-arch: build install
 
34
        dh_testdir
 
35
        dh_testroot
 
36
        dh_installchangelogs
 
37
        dh_installdocs
 
38
        dh_install
 
39
        dh_installman debian/stfl.3
 
40
        dh_link
 
41
        dh_strip
 
42
        dh_compress
 
43
        dh_fixperms
 
44
        dh_installdeb
 
45
        dh_shlibdeps
 
46
        dh_gencontrol
 
47
        dh_md5sums
 
48
        dh_builddeb
 
49
 
 
50
binary: binary-indep binary-arch
 
51
.PHONY: build clean binary-indep binary-arch binary install