36 lines
518 B
Makefile
Executable file
36 lines
518 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
build:
|
|
|
|
build-arch:
|
|
|
|
build-indep:
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean
|
|
|
|
install:
|
|
dh_install coldmotd /usr/local/bin
|
|
dh_install motd-maint /etc/
|
|
dh_install openvz /usr/local/bin
|
|
dh_install lxc /usr/local/bin
|
|
dh_testdir
|
|
dh_testroot
|
|
binary-arch:
|
|
|
|
binary-indep: install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs
|
|
dh_installdocs
|
|
dh_fixperms
|
|
dh_installdeb
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
|
|
.PHONY: clean install binary-arch binary-indep binary
|