|
|
| File: [Development] / xfs-cmds / xfsdump / debian / rules (download)
Revision 1.10, Thu Apr 24 16:04:55 2008 UTC (9 years, 6 months ago) by anibal.longdrop.melbourne.sgi.com
xfsdump debian changes Merge of master-melb:xfs-cmds:30990a by kenmcd. xfsdump debian changes |
#!/usr/bin/make -f export DH_VERBOSE=1 package=xfsdump dirme = debian/$(package) pkgme = DIST_ROOT=`pwd`/$(dirme); export DIST_ROOT; stdenv = @GZIP=-q; export GZIP; options = export DEBUG=-DNDEBUG DISTRIBUTION=debian \ INSTALL_USER=root INSTALL_GROUP=root ; checkdir = test -f debian/rules build: built built: config @echo "== dpkg-buildpackage: build" 1>&2 $(MAKE) default touch built config: .census .census: @echo "== dpkg-buildpackage: configure" 1>&2 $(checkdir) $(options) $(MAKE) configure touch .census clean: @echo "== dpkg-buildpackage: clean" 1>&2 $(checkdir) -rm -f built .census $(MAKE) distclean -rm -rf $(dirme) -rm -f debian/*substvars debian/files* debian/*.debhelper binary-indep: binary-arch: checkroot built @echo "== dpkg-buildpackage: binary-arch" 1>&2 $(checkdir) -rm -rf $(dirme) $(pkgme) $(MAKE) -C . install $(pkgme) $(MAKE) -C build src-manifest dh_installdocs dh_installchangelogs dh_strip dh_compress dh_fixperms dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch checkroot: test 0 -eq `id -u` .PHONY: binary binary-arch binary-indep clean checkroot