File: rules

package info (click to toggle)
icicles 23.0%2B20100221-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,052 kB
  • ctags: 1,330
  • sloc: lisp: 25,950; sh: 93; makefile: 27
file content (37 lines) | stat: -rwxr-xr-x 769 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#! /usr/bin/make -f

include /usr/share/dpatch/dpatch.make

clean: unpatch
	dh_testdir
	dh_testroot
	dh_clean
build: patch

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs
	cp lisp/* $(CURDIR)/debian/icicles/usr/share/emacs/site-lisp/icicles

# Build architecture-independent files here.
binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installemacsen -v
	dh_installchangelogs doc/icicles-chg.el
	dh_installdocs doc/*doc*el debian/NEWS.Debian
	dh_fixperms
	dh_compress
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

# Build architecture-dependent files here.
binary-arch: build install
# We have nothing to do by default.

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install patch unpatch