~ubuntu-branches/ubuntu/edgy/rxtx/edgy-201105201527

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Mario Joussen
  • Date: 2006-03-01 18:56:52 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060301185652-ri9941gi01goklvz
Tags: 2.1.7-2
Fixed stupid bug in clean target.
(closes: Bug#354859)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
 
# Copyright (C) 2001,2002 Mario Jou/3en <joussen@debian.org>
 
2
# Copyright (C) 2001-2006 Mario Jou/3en <joussen@debian.org>
3
3
# Distributable under the terms of the GNU GPL version 2.
4
4
 
5
5
#export DH_VERBOSE=1
8
8
configure: configure-stamp
9
9
configure-stamp:
10
10
        dh_testdir
11
 
        ./configure JAVA_HOME=/usr/lib/kaffe
 
11
        ./configure
12
12
        touch configure-stamp
13
13
 
14
14
build: configure-stamp build-stamp
15
15
build-stamp:
16
16
        dh_testdir
 
17
        (mkdir src/gnu && cd src/gnu && ln -s ../../src io)
17
18
        $(MAKE)
18
19
        touch build-stamp
19
20
 
21
22
        dh_testdir
22
23
        dh_testroot
23
24
        rm -f build-stamp configure-stamp
 
25
        rm -rf src/gnu
24
26
        -$(MAKE) distclean
25
27
        dh_clean
26
28