Rename common_nodelist_hacking() to cluster_nodelist_hacking()
[martins/autocluster.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3
4 clean:
5         dh_testdir
6         dh_testroot
7         dh_clean 
8
9 build:
10
11 install: build
12         dh_testdir
13         dh_testroot
14         dh_clean -k 
15         dh_installdirs
16         make install prefix=/usr DESTDIR=$(CURDIR)/debian/tmp
17
18 binary: install
19         dh_testdir
20         dh_testroot
21         dh_install --autodest debian/tmp/*
22         dh_installdocs
23         dh_installexamples examples/*
24         dh_compress
25         dh_fixperms
26         dh_installdeb
27         dh_gencontrol
28         dh_md5sums
29         dh_builddeb
30
31 .PHONY: binary install