File: rules

package info (click to toggle)
lacheck 1.26-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 260 kB
  • ctags: 197
  • sloc: makefile: 61
file content (120 lines) | stat: -rwxr-xr-x 3,617 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#! /usr/bin/make -f
#
# BEWARE: The rules file is AUTOMATICALLY GENERATED from rules.in
#
# rules file for Debian  lacheck package.
# $Id: rules,v 1.20 2003/06/28 16:14:20 salve Exp $
#
# Copyright (C) 1997, 1998, 1999, 2000, 2001 by Davide Giovanni Maria Salvetti
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to: The Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#
# On Debian GNU/Linux System you can find a copy of the GNU General Public
# License in "/usr/share/common-licenses/GPL".

tmp	:= $(shell pwd)/debian/tmp/

SHELL		= /bin/bash
INSTDIR		= install -m 755 -d
INSTPROG	= install -m 755 -s
INSTDATA	= install -m 644
INSTSCRIPT	= install -m 755
STRIP		= strip -R .note -R .comment

DFILES	:=	debian/README debian/copyright \
		debian/preinst debian/postinst debian/prerm debian/postrm

# WARNING: debian/rules SHOULD NOT be in $(DFILES), for Debian policy
# (it's CVS registered), lest it will be deleted by clean.
# Beside, it's automatically remade by make

debian/system.variables: /home/salve/Debian/Packages/system.variables
	$(INSTDATA) $< $@

debian/rules: debian/variables

# Eperl is simply great: thanks, Ralf!
% :: %.in
	eperl -P -o $@ $<

build: $(DFILES)
	$(checkdir)
#	Note the use of prefix=/usr/ w/out $(tmp): it leads to correct FILES section in lacheck.1.
	$(MAKE) CC=gcc CFLAGS="-O2 -Wall" prefix=/usr/ lacheck lacheck.1
	touch build

clean:
	$(checkdir)
	-rm -rf build core $(tmp) debian/files* debian/substvars
	-rm -f	$(DFILES)
	-$(MAKE) clean

binary: binary-indep binary-arch

binary-arch: checkroot build
	$(checkdir)
	-rm -rf $(tmp)

# install package
	$(INSTDIR) $(tmp)//usr/bin/ $(tmp)//usr/share/man//man1/
	$(MAKE) prefix=$(tmp)//usr/ mandir=$(tmp)//usr/share/man//man1/ install
	$(STRIP) $(addprefix $(tmp)//usr/bin/, lacheck)
	gzip -9frv $(tmp)//usr/share/man/

# install Debian doc
	$(INSTDIR) $(tmp)//usr/share/doc/lacheck/
	$(INSTDATA) lacheck.hlp $(tmp)//usr/share/doc/lacheck/
	$(INSTDATA) debian/README $(tmp)//usr/share/doc/lacheck//README.Debian
	$(INSTDATA) debian/changelog $(tmp)//usr/share/doc/lacheck//changelog.Debian
	gzip -9frv $(tmp)//usr/share/doc/lacheck/
	$(INSTDATA) debian/copyright $(tmp)//usr/share/doc/lacheck/

# install Debian control files
	$(INSTDIR) $(tmp)//DEBIAN/
	$(INSTSCRIPT) debian/{preinst,postinst,prerm,postrm} $(tmp)//DEBIAN/


# standard stuff
#-#	cd $(tmp) && du -k * | grep -v 'DEBIAN' | sort -k 2 -o $(tmp)//DEBIAN//du
	cd $(tmp) && md5sum \
		$$(find ./ -path './DEBIAN' -prune -o -type f -printf "%P\n") \
		| sort -k 2 -o $(tmp)//DEBIAN//md5sums
	dpkg-shlibdeps lacheck
	dpkg-gencontrol -isp
	chown -R root.root $(tmp)
	chmod -R go=rX $(tmp)
	dpkg --build $(tmp) ..

binary-indep: checkroot build
	$(checkdir)

test: build
	$(checkdir)
	$(MAKE) check

checkdir = test -f debian/rules

checkroot:
	$(checkdir)
	test root = "$$(whoami)"

source diff:
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

.PHONY: binary binary-arch binary-indep clean checkroot

### Local Variables:
### mode: makefile
### End: