forked from shaba/openuds
47 lines
973 B
Plaintext
47 lines
973 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
# -*- makefile -*-
|
||
|
configure: configure-stamp
|
||
|
configure-stamp:
|
||
|
dh_testdir
|
||
|
touch configure-stamp
|
||
|
build: build-arch build-indep
|
||
|
build-arch: build-stamp
|
||
|
build-indep: build-stamp
|
||
|
build-stamp: configure-stamp
|
||
|
dh_testdir
|
||
|
$(MAKE)
|
||
|
touch $@
|
||
|
clean:
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
rm -f build-stamp configure-stamp
|
||
|
dh_clean
|
||
|
install: build
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_prep
|
||
|
dh_installdirs
|
||
|
$(MAKE) DESTDIR=$(CURDIR)/debian/udsactor install-udsactor
|
||
|
$(MAKE) DESTDIR=$(CURDIR)/debian/udsactor-xrdp install-udsactor-xrdp
|
||
|
$(MAKE) DESTDIR=$(CURDIR)/debian/udsactor-nx install-udsactor-nx
|
||
|
binary-arch: build install
|
||
|
# emptyness
|
||
|
binary-indep: build install
|
||
|
dh_testdir
|
||
|
dh_testroot
|
||
|
dh_installchangelogs
|
||
|
dh_installdocs
|
||
|
dh_installdebconf
|
||
|
dh_installinit --no-start
|
||
|
dh_python2=python
|
||
|
dh_compress
|
||
|
dh_link
|
||
|
dh_fixperms
|
||
|
dh_installdeb
|
||
|
dh_shlibdeps
|
||
|
dh_gencontrol
|
||
|
dh_md5sums
|
||
|
dh_builddeb
|
||
|
binary: binary-indep
|
||
|
.PHONY: build clean binary-indep binary install configure
|