forked from shaba/openuds
45 lines
830 B
Makefile
Executable File
45 lines
830 B
Makefile
Executable File
#!/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/udsclient3 install
|
|
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
|