some more adaptions for /home/opt
[mancala] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 export DH_VERBOSE=0
11
12
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
18
19 CFLAGS = -Wall -g
20
21 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
22         CFLAGS += -O0
23 else
24         CFLAGS += -O2
25 endif
26
27 config.status: 
28         dh_testdir
29         # Add here commands to configure the package.
30
31 build: build-stamp
32
33 build-stamp:  config.status
34         dh_testdir
35
36         # Add here commands to compile the package.
37         $(MAKE)
38         touch $@
39
40 clean:
41         dh_testdir
42         dh_testroot
43         rm -f build-stamp 
44
45         # Add here commands to clean up after the build process.
46         -$(MAKE) clean
47 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
48         cp -f /usr/share/misc/config.sub config.sub
49 endif
50 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
51         cp -f /usr/share/misc/config.guess config.guess
52 endif
53
54
55         dh_clean 
56
57 install: build
58         dh_testdir
59         dh_testroot
60         dh_clean -k 
61         dh_installdirs
62
63         # Add here commands to install the package into debian/mancala
64         $(MAKE) DESTDIR=$(CURDIR)/debian/mancala install
65
66
67 # Build architecture-independent files here.
68 binary-indep: build install
69 # We have nothing to do by default.
70
71 # Build architecture-dependent files here.
72 binary-arch: build install
73         dh_testdir
74         dh_testroot
75 #       dh_installchangelogs
76         dh_installdocs -XFAQ -XNEWS -XBUGS -XREADME.translators -XTODO -XREADME
77 #       dh_installexamples
78         dh_install --sourcedir=debian/tmp
79 #       dh_installmenu
80 #       dh_installdebconf       
81 #       dh_installlogrotate
82 #       dh_installemacsen
83 #       dh_installpam
84 #       dh_installmime
85 #       dh_python
86 #       dh_installinit
87 #       dh_installcron
88 #       dh_installinfo
89 #       dh_installman --sourcedir=debian/tmp
90         dh_link
91         dh_strip
92         dh_compress
93         dh_fixperms
94 #       dh_perl
95 #       dh_makeshlibs
96         dh_installdeb
97         dh_shlibdeps
98         dh_gencontrol
99         dh_md5sums
100         dh_builddeb
101
102 binary: binary-indep binary-arch
103 .PHONY: build clean binary-indep binary-arch binary install