Update domain name to kpe.io
[xptest.git] / debian / rules
1 #!/usr/bin/make -f
2
3 pkg             := xptest
4 debpkg          := cl-xptest
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 $(pkg).asd xptestsuite.lisp $(clc-files)
24
25 binary-indep: build install
26         dh_testdir
27         dh_testroot
28         dh_installdocs
29         dh_installexamples xptest-example.lisp
30         dh_installchangelogs
31         dh_lisp
32         dh_compress
33         dh_fixperms
34         dh_installdeb
35         dh_gencontrol
36         dh_md5sums
37         dh_builddeb
38
39 binary-arch:
40
41 binary: binary-indep
42
43
44 .PHONY: build clean binary-indep binary-arch binary install