root/wifi-ltsp/trunk/debian/rules @ 356
54 | jredrejo | #!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|||
# Uncomment this to turn on verbose mode.
|
|||
#export DH_VERBOSE=1
|
|||
build: build-stamp
|
|||
build-stamp:
|
|||
dh_testdir
|
|||
touch build-stamp
|
|||
clean:
|
|||
dh_testdir
|
|||
dh_testroot
|
|||
rm -f build-stamp configure-stamp
|
|||
rm -Rf build
|
|||
dh_clean
|
|||
install: build
|
|||
dh_testdir
|
|||
dh_testroot
|
|||
dh_clean -k
|
|||
dh_installdirs
|
|||
270 | jredrejo | python setup.py install --prefix=/usr --install-layout=deb --root=$(CURDIR)/debian/wifi-ltsp
|
|
54 | jredrejo | ||
# Build architecture-independent files here.
|
|||
binary-indep: build install
|
|||
dh_testdir
|
|||
dh_testroot
|
|||
dh_installchangelogs
|
|||
dh_installdocs
|
|||
dh_installman
|
|||
dh_install
|
|||
270 | jredrejo | dh_python2
|
|
54 | jredrejo | dh_compress
|
|
dh_fixperms
|
|||
dh_installdeb
|
|||
dh_shlibdeps
|
|||
dh_gencontrol
|
|||
dh_md5sums
|
|||
dh_builddeb
|
|||
# Build architecture-dependent files here.
|
|||
binary-arch: build install
|
|||
binary: binary-indep binary-arch
|
|||
.PHONY: build clean binary-indep binary-arch binary install
|