Fix types/initforms
[reversi.git] / debian / rules
1 #!/usr/bin/make -f
2
3 pkg             := reversi
4 debpkg          := cl-reversi
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 build: build-indep build-arch
11 build-indep:
12 build-arch:
13
14 clean:
15         dh_testdir
16         dh_testroot
17         dh_clean
18
19 install: build
20         dh_testdir
21         dh_testroot
22         dh_prep
23         dh_installdirs
24         dh_install $(pkg).asd *.lisp *.dat $(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_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