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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
#!/usr/bin/make -f
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -g
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
host_arch := $(shell dpkg-architecture -qDEB_HOST_ARCH)
pkg := ctsim
pkg-p4 := ctsim-pentium4
pkg-help := ctsim-help
pkg-doc := ctsim-doc
ctsim-shared := usr/share/ctsim
prefix := debian/$(pkg)
prefix-p4 := debian/$(pkg-p4)
prefix-help := debian/$(pkg-help)
prefix-doc := debian/$(pkg-doc)
DESTDIR := `pwd`/$(prefix)
DESTDIR-P4 := `pwd`/$(prefix-p4)
HELPDIR := `pwd`/$(prefix-help)/$(ctsim-shared)
doc-dir := usr/share/doc/$(pkg-doc)
pixmap-dir := usr/share/pixmaps
desktop-dir := usr/share/applications
configure: configure-stamp
configure-stamp:
dh_testdir
touch configure.in && touch aclocal.m4 && touch configure
./configure --prefix=$(DESTDIR)/usr --mandir=$(DESTDIR)/usr/share/man --datadir=$(HELPDIR) --with-ctn -with-x --without-lam
touch configure-stamp
build-arch: configure-stamp build-arch-stamp
build-arch-stamp:
dh_testdir
# Add here commands to compile the package.
$(MAKE) all
touch build-arch-stamp
build-indep: configure-stamp build-indep-stamp
build-indep-stamp:
dh_testdir
# Add here command to compile/build the arch indep package.
# It's ok not to do anything here, if you don't need to build
# anything for this package.
#/usr/bin/docbook-to-man debian/#PACKAGE#.sgml > #PACKAGE#.1
(cd docs; tar xzf html.tar.gz)
touch build-indep-stamp
build: build-arch build-indep
clean:
dh_testdir
dh_testroot
rm -f build-arch-stamp build-indep-stamp configure-stamp
# Add here commands to clean up after the build process.
-$(MAKE) distclean
find . -type f -and -name \*~ -or -name .\*~ -exec rm -f {} \;
rm -f debian/ctsim.postinst.* debian/ctsim.prerm.*
# Ensure up-to-date versions of config.sub and config.guess
-test -r /usr/share/misc/config.sub && cp -f /usr/share/misc/config.sub config.sub
-test -r /usr/share/misc/config.guess && cp -f /usr/share/misc/config.guess config.guess
dh_clean
install: DH_OPTIONS=
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
#
dh_installdirs -p $(pkg-help) $(ctsim-shared)
${MAKE} install
# Testing for i386 optimized builds
echo Host architecture is $(host_arch)
ifneq (,$(findstring i386,$(host_arch)))
# Building CPU-specific i386 flavors
# Pentium 4
${MAKE} clean
./configure --prefix=$(DESTDIR-P4)/usr --mandir=$(DESTDIR-P4)/usr/share/man --datadir=$(HELPDIR) --with-ctn --with-mcpu=pentium4
$(MAKE) all
${MAKE} install
dh_installdirs -p $(pkg-p4) $(pixmap-dir)
dh_installdirs -p $(pkg-p4) $(desktop-dir)
dh_install -p $(pkg-p4) debian/ctsim.xpm $(pixmap-dir)
dh_install -p $(pkg-p4) debian/ctsim.desktop $(desktop-dir)
endif
# Add here commands to install the package into debian/ctsim.
dh_installdirs -p $(pkg) $(pixmap-dir)
dh_installdirs -p $(pkg) $(desktop-dir)
dh_install -p $(pkg) debian/ctsim.xpm $(pixmap-dir)
dh_install -p $(pkg) debian/ctsim.desktop $(desktop-dir)
dh_install -p $(pkg-help) docs/ctsim.htb $(ctsim-shared)
dh_install -p $(pkg-doc) docs/html $(doc-dir)
dh_link -p $(pkg-doc) $(doc-dir)/html/$(pkg)_contents.html $(doc-dir)/html/index.html
gzip -9 docs/ctsim.pdf
dh_install -p $(pkg-doc) docs/ctsim.pdf.gz $(doc-dir)
gunzip docs/ctsim.pdf.gz
chmod +x helical/*.sh tools/*.sh
# Pass -i to all debhelper commands in this target to reduce clutter.
binary-indep: build install
dh_testdir -i
dh_testroot -i
dh_installdocs -i
dh_installexamples -i
dh_installmenu -i
dh_installcron -i
dh_installinfo -i
dh_installchangelogs ChangeLog -i
dh_link -i
dh_compress -i
dh_fixperms -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir -a
dh_testroot -a
dh_installdocs -a
dh_installexamples -p $(pkg) tools/sample-ctsim.sh helical/sample-helical.sh
ifneq (,$(findstring i386,$(host_arch)))
dh_installexamples -p $(pkg-p4) tools/sample-ctsim.sh helical/sample-helical.sh
endif
ifeq (,$(findstring i386,$(host_arch)))
dh_installchangelogs -p $(pkg) ChangeLog
dh_strip -p $(pkg)
dh_link -p $(pkg)
dh_compress -p $(pkg)
dh_fixperms -p $(pkg)
dh_installmenu -p $(pkg)
dh_installdeb -p $(pkg)
dh_gencontrol -p $(pkg)
dh_shlibdeps -p $(pkg)
dh_md5sums -p $(pkg)
dh_builddeb -p $(pkg)
else
dh_installchangelogs ChangeLog -a
dh_strip -a
dh_link -a
dh_compress -a
dh_fixperms -a
dh_installmenu -a
dh_installdeb -a
dh_gencontrol -a
dh_shlibdeps -a
dh_md5sums -a
dh_builddeb -a
endif
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
|