]> git.sesse.net Git - betaftpd/blob - debian/rules
Freshly made debian/ directory, from a potato (2.2) machine, originally made with...
[betaftpd] / debian / rules
1 #!/usr/bin/make -f
2 # Made with the aid of debmake, by Christoph Lameter,
3 # based on the sample debian/rules file for GNU hello by Ian Jackson.
4
5 package=betaftpd
6
7 build:
8         $(checkdir)
9         CFLAGS="-O6 -Wall" ./configure --prefix=/usr --enable-xferlog --enable-ascii --enable-fork --enable-upload --enable-dcache --enable-message --enable-shadow
10         $(MAKE) CFLAGS="-O6 -Wall"
11         touch build
12
13 clean:
14         $(checkdir)
15         -rm -f build
16         -$(MAKE) distclean
17         -rm -f `find . -name "*~"`
18         -rm -rf debian/tmp debian/files* core debian/substvars
19
20 binary-indep: checkroot build
21         $(checkdir)
22         # For some reason, this is never triggered... the document installation
23         # is this in binary-arch instead.
24
25 binary-arch: checkroot build
26         $(checkdir)
27         -rm -rf debian/tmp
28         install -d debian/tmp
29         cd debian/tmp && install -d `cat ../dirs`
30         $(MAKE) install prefix=`pwd`/debian/tmp/usr
31         -cp doc/* `pwd`/debian/tmp/usr/share/doc/betaftpd/
32 # Must have debmake installed for this to work. Otherwise please copy
33 # /usr/bin/debstd into the debian directory and change debstd to debian/debstd
34         debstd README 
35         dpkg-gencontrol -isp
36         chown -R root.root debian/tmp
37         chmod -R go=rX debian/tmp
38         dpkg --build debian/tmp ..
39
40 define checkdir
41         test -f debian/rules
42 endef
43
44 binary: binary-indep binary-arch
45
46 checkroot:
47         $(checkdir)
48         test root = "`whoami`"
49
50 .PHONY: binary binary-indep binary-arch clean checkroot