chiark / gitweb /
@@ -7,6 +7,9 @@
[authbind.git] / debian / rules
1 #! /usr/bin/make -f
2 #
3 # debian/rules for authbind
4
5 # authbind is Copyright (C) 1998 Ian Jackson
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software Foundation,
19 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
20 #
21 # $Id$
22
23 CC= gcc
24
25 package=authbind
26 major=1
27 minor=0
28
29 arch = $(shell dpkg --print-architecture)
30
31 INSTALL = install
32 INSTALL_FILE    = $(INSTALL) -p    -o root -g root  -m  644
33 INSTALL_PROGRAM = $(INSTALL) -p    -o root -g root  -m  755
34 INSTALL_SCRIPT  = $(INSTALL) -p    -o root -g root  -m  755
35 INSTALL_DIR     = $(INSTALL) -p -d -o root -g root  -m  755
36
37 CFLAGS = -O2 -Wall
38 LDFLAGS = 
39
40
41 CFLAGS += -g
42 LDFLAGS += -g 
43
44 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
45 INSTALL_PROGRAM += -s
46 endif
47
48 export CFLAGS
49 export LDFLAGS
50 export INSTALL
51 export INSTALL_FILE
52 export INSTALL_PROGRAM
53 export INSTALL_SCRIPT
54 export INSTALL_DIR
55
56
57 build: 
58         $(MAKE) prefix=/usr
59
60 clean:  
61         $(MAKE) distclean
62         rm -rf debian/{files,substvars,tmp} build
63         rm -f debian/*~ debian/#*# debian/core debian/*.bak
64
65 binary-indep:   checkroot build
66         $(checkdir)
67 # There are no architecture-independent files to be uploaded
68 # generated by this package.  If there were any they would be
69 # made here.
70
71 lab=libauthbind.so.$(major).$(minor)
72 udp=debian/tmp/usr/share/doc/$(package)
73
74 binary-arch:    checkroot build
75         rm -rf debian/tmp
76         install -d -g root -m 755 -o root debian/tmp/DEBIAN $(udp) \
77                 debian/tmp/usr/{bin,lib/$(package),share/man}
78         $(MAKE) prefix=debian/tmp/usr etc_dir=debian/tmp/etc/authbind \
79                 man_dir=debian/tmp/usr/share/man  install install_man
80         $(INSTALL_FILE) debian/changelog $(udp)/changelog
81         gzip -9 debian/tmp/usr/share/man/man*/* $(udp)/*
82         $(INSTALL_FILE) debian/copyright $(udp)/.
83         $(INSTALL_SCRIPT) debian/{postrm,prerm,postinst} debian/tmp/DEBIAN
84 ifneq ($(arch),alpha)
85         $(INSTALL_FILE) debian/shlibs debian/tmp/DEBIAN
86 else
87         $(INSTALL_FILE) debian/shlibs.alpha debian/tmp/DEBIAN/shlibs
88 endif
89         dpkg-shlibdeps ./authbind
90         dpkg-gencontrol -isp
91         chown -R root.root debian/tmp
92         chmod -R g-ws debian/tmp
93         dpkg --build debian/tmp ..
94
95 binary:  binary-indep binary-arch
96
97 checkroot:
98         $(checkdir)
99         test root = "`whoami`"