1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
#!/usr/bin/make -f
# -*- makefile -*-
# debian/rules for ibcs
export DH_COMPAT=3
export DH_OPTIONS
export DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
package := $(firstword $(shell dh_listpackages))
prefix := $(PWD)/debian/$(package)/usr
version := $(shell dpkg-parsechangelog | \
sed -ne 's/Version: *\([0-9]\+:\)*//p')
module-src := x.x
module-tar := debian/ibcs-source-x.x/usr/src/ibcs-x.x.tar.gz
module-path := modules/ibcs-x.x
module-deb := debian/$(module-path)/debian
build := mkdir -p $(module-deb) ; \
cp -a CONFIG.* $(module-src)/* debian/$(module-path) ; \
install -m 644 debian/changelog debian/copyright $(module-deb) ; \
install -m 644 debian/control.modules $(module-deb)/control ; \
install -m 755 debian/postinst.modules $(module-deb)/postinst ; \
install -m 755 debian/prerm.modules $(module-deb)/prerm ; \
install -m 755 debian/rules.modules $(module-deb)/rules ; \
tag:
cvs status 2>/dev/null | grep File: | grep -qv Up-to-date \
&& exit 1 || exit 0
cvs tag -F $(subst .,_,debian_version_$(version))
ifeq ($(findstring -,$(version)),)
cvs tag -F $(subst .,_,upstream_version_$(version))
endif
build: build-stamp
build-stamp:
dh_testdir
# Build the module source packages
rm -rf debian/modules
$(subst x.x,2.0,$(build))
$(subst x.x,2.2,$(build))
# Build the base tools
make -C Tools all CONFIG=CONFIG.$(DEB_BUILD_ARCH)
touch $@
clean: checkroot
rm -f build-stamp
rm -rf debian/modules
-$(MAKE) -C Tools clean CONFIG=CONFIG.$(DEB_BUILD_ARCH)
-mv README.Tools Tools/README
-mv README.VSYS VSYS/README
dh_clean
install: DH_OPTIONS=
install: checkroot build
dh_clean -k
dh_installdirs -iA usr/src
dh_installdirs -a usr/sbin
tar -C debian -zcf $(subst x.x,2.0,$(module-tar) $(module-path))
tar -C debian -zcf $(subst x.x,2.2,$(module-tar) $(module-path))
install Tools/lnxstamp Tools/mkmnttab Tools/trace $(prefix)/sbin
-mv Tools/README README.Tools
-mv VSYS/README README.VSYS
# Build architecture-independent files here.
# Pass -i to all debhelper commands in this target to reduce clutter.
binary-indep: DH_OPTIONS=-i
binary-indep: install
dh_installdocs
dh_installchangelogs
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
# Build architecture-dependent files here.
# Pass -a to all debhelper commands in this target to reduce clutter.
binary-arch: DH_OPTIONS=-a
binary-arch: install
dh_installdocs Doc PROD.Patches VSYS CREDITS README*
dh_installchangelogs ChangeLog
dh_installmanpages
dh_undocumented lnxstamp.8.gz mkmnttab.8.gz trace.8.gz
dh_strip
dh_link
dh_compress
dh_fixperms
dh_installmodules
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
checkroot:
dh_testdir
dh_testroot
.PHONY: binary binary-indep binary-arch install clean build tag
|