File: rules

package info (click to toggle)
inform-mode 1.5.8-4
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 128 kB
  • ctags: 64
  • sloc: lisp: 1,024; sh: 60; makefile: 35
file content (51 lines) | stat: -rwxr-xr-x 715 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
39
40
41
42
43
44
45
46
47
48
49
50
51
#! /usr/bin/make -f

.PHONY: clean
clean:
	dh_testdir
	dh_testroot
	dh_clean

.PHONY: build
build:

.PHONY: build-arch
build-arch:

.PHONY: build-indep
build-indep:

.PHONY: install
install: build
	dh_testdir
	dh_testroot
	dh_clean
	dh_installdirs
	dh_install inform-mode.el usr/share/emacs/site-lisp/inform-mode

.PHONY: binary
binary: binary-indep binary-arch

.PHONY: binary-arch
binary-arch: install

.PHONY: binary-indep
binary-indep: install
	dh_testdir
	dh_testroot
	dh_installchangelogs
	dh_installdocs
	dh_installemacsen
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb


# Local variables:
# coding: utf-8
# mode: makefile
# End:
# vim: fileencoding=utf-8 filetype=make :