3 DEB_BUILD_GNU_TYPE = $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
4 DEB_HOST_GNU_TYPE = $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
5 ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
6 CONFARGS = --host=$(DEB_HOST_GNU_TYPE)
9 configure: configure-stamp
12 cp -f /usr/share/misc/config.sub build-aux/config.sub
13 cp -f /usr/share/misc/config.guess build-aux/config.guess
14 RSH="/usr/bin/rsh" CFLAGS="-O2 -g -Wall" \
15 ./configure --prefix=/usr --libexecdir=/usr/sbin $(CONFARGS)
18 build: configure-stamp build-stamp
22 RSH="/usr/bin/rsh" CFLAGS="-O2 -g -Wall -fno-gnu89-inline" $(MAKE)
23 ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
24 (cd tests ; $(MAKE) clean)
33 rm -f build-stamp configure-stamp
35 [ ! -f Makefile ] || $(MAKE) distclean
45 make install bindir=`pwd`/debian/tar/bin prefix=`pwd`/debian/tar/usr \
46 libexecdir=`pwd`/debian/tar/usr/sbin
47 install -m 755 debian/rmt.sh debian/tar/etc/rmt
48 mv debian/tar/usr/sbin/rmt debian/tar/usr/sbin/rmt-tar
50 # Build architecture-independent files here.
51 binary-indep: build install
53 # Build architecture-dependent files here.
54 binary-arch: build install
58 mv -f debian/tar/usr/share/doc/tar/ChangeLog \
59 debian/tar/usr/share/doc/tar/changelog
60 mv -f debian/tar/usr/share/doc/tar/ChangeLog.1 \
61 debian/tar/usr/share/doc/tar/changelog.1
65 dh_installman debian/tar.1 debian/rmt.8
66 mv debian/tar/usr/share/man/man8/rmt.8 \
67 debian/tar/usr/share/man/man8/rmt-tar.8
69 rm -f debian/tar/usr/share/info/dir*
71 dh_installchangelogs #CHANGELOGS#
82 binary: binary-indep binary-arch
83 .PHONY: build clean binary-indep binary-arch binary install configure