Automated commit for debian release 2.13-1
[hyperobject.git] / debian / rules
1 #!/usr/bin/make -f
2
3 pkg             := hyperobject
4 debpkg          := cl-$(pkg)
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 tests-files     := tests.lisp
11 source-files    := $(filter-out $(tests-files),$(wildcard *.lisp))
12
13
14 build: build-arch build-indep
15 build-arch:
16 build-indep:
17
18 clean:
19         dh_testdir
20         dh_testroot
21         dh_clean
22
23 install: build
24         dh_testdir
25         dh_testroot
26         dh_prep
27         dh_installdirs
28         dh_install $(pkg).asd $(source-files) $(clc-files) $(clc-tests)
29
30 binary-indep: install
31         dh_testdir
32         dh_testroot 
33         dh_installdocs 
34         dh_installexamples examples/*.lisp
35         dh_installchangelogs 
36         dh_lisp
37         dh_compress 
38         dh_fixperms 
39         dh_installdeb 
40         dh_gencontrol 
41         dh_md5sums 
42         dh_builddeb 
43
44 binary-arch:
45
46 binary: binary-indep
47
48
49 .PHONY: build clean binary-indep binary-arch binary install