File: rules

package info (click to toggle)
icicles 23.0%2B20110910-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,696 kB
  • sloc: lisp: 31,899; sh: 93; makefile: 28
file content (38 lines) | stat: -rwxr-xr-x 755 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
38
#! /usr/bin/make -f


clean:
	dh_testdir
	dh_testroot
	dh_clean
build: build-arch build-indep
build-arch:
build-indep:

install: build
	dh_testdir
	dh_testroot
	dh_prep 
	dh_installdirs
	cp lisp/* doc/*el $(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