Fix debian/rules.
This commit is contained in:
parent
9dec4fc95a
commit
230c8509fa
1 changed files with 2 additions and 12 deletions
14
debian/rules
vendored
14
debian/rules
vendored
|
@ -7,38 +7,29 @@
|
||||||
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
# Uncomment this to turn on verbose mode.
|
||||||
#export DH_VERBOSE=1
|
export DH_VERBOSE=1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
configure: configure-stamp
|
configure: configure-stamp
|
||||||
configure-stamp:
|
configure-stamp:
|
||||||
dh_testdir
|
dh_testdir
|
||||||
# Add here commands to configure the package.
|
# Add here commands to configure the package.
|
||||||
|
|
||||||
touch configure-stamp
|
touch configure-stamp
|
||||||
|
|
||||||
|
|
||||||
build: build-stamp
|
build: build-stamp
|
||||||
|
|
||||||
build-stamp: configure-stamp
|
build-stamp: configure-stamp
|
||||||
dh_testdir
|
dh_testdir
|
||||||
|
|
||||||
# Add here commands to compile the package.
|
# Add here commands to compile the package.
|
||||||
$(MAKE)
|
$(MAKE) DESTDIR=$(CURDIR)/debian/qasim build
|
||||||
#docbook-to-man debian/qasim.sgml > qasim.1
|
#docbook-to-man debian/qasim.sgml > qasim.1
|
||||||
|
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
dh_testdir
|
dh_testdir
|
||||||
dh_testroot
|
dh_testroot
|
||||||
rm -f build-stamp configure-stamp
|
rm -f build-stamp configure-stamp
|
||||||
|
|
||||||
# Add here commands to clean up after the build process.
|
# Add here commands to clean up after the build process.
|
||||||
$(MAKE) clean
|
$(MAKE) clean
|
||||||
|
|
||||||
dh_clean
|
dh_clean
|
||||||
|
|
||||||
install: build
|
install: build
|
||||||
|
@ -46,7 +37,6 @@ install: build
|
||||||
dh_testroot
|
dh_testroot
|
||||||
dh_clean -k
|
dh_clean -k
|
||||||
dh_installdirs
|
dh_installdirs
|
||||||
|
|
||||||
# Add here commands to install the package into debian/qasim.
|
# Add here commands to install the package into debian/qasim.
|
||||||
$(MAKE) DESTDIR=$(CURDIR)/debian/qasim install
|
$(MAKE) DESTDIR=$(CURDIR)/debian/qasim install
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue