chiark / gitweb /
~~-ify changelog
[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 SHELL=/bin/bash
25
26 package=authbind
27 major=1
28 minor=0
29
30 arch = $(shell dpkg --print-architecture)
31
32 INSTALL = install
33 INSTALL_FILE    = $(INSTALL) -p    -o root -g root  -m  644
34 INSTALL_PROGRAM = $(INSTALL) -p    -o root -g root  -m  755
35 INSTALL_SCRIPT  = $(INSTALL) -p    -o root -g root  -m  755
36 INSTALL_DIR     = $(INSTALL) -p -d -o root -g root  -m  755
37
38 CFLAGS = -O2 -Wall
39 LDFLAGS = 
40
41
42 CFLAGS += -g
43 LDFLAGS += -g 
44
45 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
46 INSTALL_PROGRAM += -s
47 STRIP=strip
48 else
49 STRIP=:
50 endif
51
52 export CFLAGS
53 export LDFLAGS
54 export INSTALL
55 export INSTALL_FILE
56 export INSTALL_PROGRAM
57 export INSTALL_SCRIPT
58 export INSTALL_DIR
59 export STRIP
60
61
62 build: 
63         $(MAKE) prefix=/usr
64
65 clean:  
66         $(MAKE) distclean
67         rm -rf debian/{files,substvars,tmp} build
68         rm -f debian/*~ debian/#*# debian/core debian/*.bak
69
70 binary-indep:   checkroot build
71         $(checkdir)
72 # There are no architecture-independent files to be uploaded
73 # generated by this package.  If there were any they would be
74 # made here.
75
76 lab=libauthbind.so.$(major).$(minor)
77 udp=debian/tmp/usr/share/doc/$(package)
78
79 binary-arch:    checkroot build
80         rm -rf debian/tmp
81         install -d -g root -m 755 -o root debian/tmp/DEBIAN $(udp) \
82                 debian/tmp/usr/{bin,lib/$(package),share/man}
83         $(MAKE) prefix=debian/tmp/usr etc_dir=debian/tmp/etc/authbind \
84                 man_dir=debian/tmp/usr/share/man  install install_man
85         $(INSTALL_FILE) debian/changelog $(udp)/changelog
86         gzip -9 debian/tmp/usr/share/man/man*/* $(udp)/*
87         $(INSTALL_FILE) debian/copyright $(udp)/.
88         $(INSTALL_SCRIPT) debian/{postrm,prerm,postinst} debian/tmp/DEBIAN
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`"