root/trunk/midgard/apis/mono/debian/rules

Revision 10661, 0.9 kB (checked in by ecanuto, 2 years ago)

Initial Mono bindings import

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
Line 
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # GNU copyright 1997 to 1999 by Joey Hess.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8
9 configure: configure-stamp
10 configure-stamp:
11         dh_testdir
12         ./configure --prefix=/usr
13         touch configure-stamp
14
15 build: build-stamp
16 build-stamp: configure-stamp
17         dh_testdir
18         $(MAKE)
19         touch build-stamp
20
21 clean:
22         dh_testdir
23         dh_testroot
24         rm -f build-stamp configure-stamp
25         -$(MAKE) clean
26         dh_clean
27
28 install: build
29         dh_testdir
30         dh_testroot
31         dh_clean -k
32         dh_installdirs
33         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
34
35 binary-arch: build install
36 # We have nothing to do by default.
37
38 binary-indep: build install
39         dh_testdir
40         dh_testroot
41         dh_install
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 configure
Note: See TracBrowser for help on using the browser.