~ubuntu-branches/ubuntu/trusty/fl-cow/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Robert Collins
  • Date: 2005-05-28 17:27:21 UTC
  • Revision ID: james.westby@ubuntu.com-20050528172721-hlqezh01ks1duqkq
Tags: 0.4-2
Cheap bugfix FTBFS in initial upload.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
clean:
 
4
        dh_testdir
 
5
        - $(MAKE) distclean
 
6
        dh_clean *-stamp
 
7
 
 
8
configure-stamp:
 
9
        dh_testdir
 
10
        ./configure --prefix=/usr
 
11
        touch configure-stamp
 
12
 
 
13
configure: configure-stamp
 
14
 
 
15
build-stamp: configure
 
16
        dh_testdir
 
17
        $(MAKE)
 
18
        $(MAKE) check
 
19
        touch build-stamp
 
20
 
 
21
build: build-stamp
 
22
 
 
23
install-stamp: build
 
24
        dh_testdir
 
25
        dh_testroot
 
26
        $(MAKE) DESTDIR=$(CURDIR)/debian/fl-cow install
 
27
 
 
28
install: install-stamp
 
29
 
 
30
binary-arch: install
 
31
        dh_testdir
 
32
        dh_testroot
 
33
        dh_installdocs README
 
34
        dh_installchangelogs ChangeLog
 
35
        install -D -m 644 debian/lintian-override \
 
36
                debian/fl-cow/usr/share/lintian/overrides/fl-cow
 
37
        dh_strip
 
38
        dh_compress
 
39
        dh_fixperms
 
40
        dh_installdeb
 
41
        dh_shlibdeps
 
42
        dh_gencontrol
 
43
        dh_md5sums
 
44
        dh_builddeb
 
45
 
 
46
binary-indep:
 
47
 
 
48
binary: binary-arch
 
49
 
 
50
.PHONY: clean configure build install binary-arch binary-indep binary
 
51