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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
.SUFFIXES: .pl .1
%.1: %.pl
pod2man $< > $@
SOURCES=csv2mipe.pl genotype2mipe.pl mipe06to07.pl mipe08to09.pl \
mipe0_9to1_0.pl mipe2dbSTS.pl mipe2fas.pl mipe2genotypes.pl mipe2html.pl \
mipe2pcroverview.pl mipe2pcrprimers.pl mipe2putativesbeprimers.pl mipe2sbeprimers.pl \
mipe2snps.pl mipeCheckSanity.pl removePcrFromMipe.pl removeSbeFromMipe.pl \
removeSnpFromMipe.pl sbe2mipe.pl snp2mipe.pl snpPosOnDesign.pl snpPosOnSource.pl
MANPAGES=csv2mipe.1 genotype2mipe.1 mipe06to07.1 mipe08to09.1 \
mipe0_9to1_0.1 mipe2dbSTS.1 mipe2fas.1 mipe2genotypes.1 mipe2html.1 \
mipe2pcroverview.1 mipe2pcrprimers.1 mipe2putativesbeprimers.1 mipe2sbeprimers.1 \
mipe2snps.1 mipeCheckSanity.1 removePcrFromMipe.1 removeSbeFromMipe.1 \
removeSnpFromMipe.1 sbe2mipe.1 snp2mipe.1 snpPosOnDesign.1 snpPosOnSource.1
CFLAGS = -Wall -g
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
configure:
build: $(MANPAGES)
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
dh_clean *.1
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/mipe.
cp *.dtd *.xsd $(CURDIR)/debian/mipe/usr/share/mipe/
for i in *.pl; do \
bname=`echo $$i | sed -e 's/.pl$$//'`; \
cp $$i $(CURDIR)/debian/mipe/usr/bin/$$bname ; \
done
# Build architecture-dependent files here.
binary-arch: build install
# We have nothing to do by default.
# Build architecture-independent files here.
binary-indep: build install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
dh_installman
dh_compress
dh_fixperms
dh_perl
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
|