Initial check-in
[him-cellwriter] / debian / rules
1 #!/usr/bin/make -f
2
3 config.status: configure
4         ./configure
5
6 build:
7         $(MAKE)
8
9 clean: 
10         $(MAKE) clean
11
12 install: build
13         rm -rf debian/him-cellwriter/* || true
14         $(MAKE) prefix=$(CURDIR)/debian/him-cellwriter/usr install
15
16
17 binary: build install
18         dh_testdir
19         dh_testroot
20 #       dh_install
21         dh_strip
22         dh_fixperms
23         dh_makeshlibs
24         dh_installdeb
25         dh_shlibdeps
26         dh_gencontrol
27         dh_md5sums
28         dh_builddeb
29
30 .PHONY: build clean binary install