49eb12a1e979e48f03db45db24ff704f80448167
[md5.git] / debian / rules
1 #!/usr/bin/make -f
2
3 pkg             := md5
4 debpkg          := cl-md5
5
6 clc-source      := usr/share/common-lisp/source
7 clc-systems     := usr/share/common-lisp/systems
8 clc-files       := $(clc-source)/$(pkg)
9
10
11 build:
12
13 clean:
14         dh_testdir
15         dh_testroot
16         dh_clean
17
18 install: build
19         dh_testdir
20         dh_testroot
21         dh_prep
22         dh_installdirs
23         dh_install md5.asd $(clc-files)
24         dh_install *.lisp $(clc-files)
25
26 binary-indep: install
27         dh_testdir
28         dh_testroot
29         dh_installdocs
30         dh_installchangelogs
31         dh_lisp
32         dh_compress
33         dh_fixperms
34         dh_installdeb
35         dh_shlibdeps
36         dh_gencontrol
37         dh_md5sums
38         dh_builddeb
39
40 binary-arch:
41
42 binary: binary-indep
43
44
45 .PHONY: build clean binary-indep binary-arch binary install