File: rules

package info (click to toggle)
ptx 0.4-5
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 792 kB
  • ctags: 655
  • sloc: ansic: 6,118; lisp: 243; makefile: 190; sh: 173
file content (53 lines) | stat: -rwxr-xr-x 1,280 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
#!/usr/bin/make -f

package=ptx
dtudp=debian/tmp/usr/doc/$(package)

build:
	$(checkdir)
	./configure --prefix=/usr
	make CFLAGS="-O2 -g -Wall" datadir=/usr/lib
	touch build

clean:
	$(checkdir)
	-rm -f build
	-make distclean
	-rm -f `find . -name "*~"`
	-rm -rf debian/tmp debian/files* core debian/substvars

binary-indep: checkroot build
	$(checkdir)

binary-arch: checkroot build
	$(checkdir)
	-rm -rf debian/tmp
	install -d debian/tmp
	cd debian/tmp && install -d usr/bin usr/doc/$(package) DEBIAN
	make install prefix=`pwd`/debian/tmp/usr \
		datadir=`pwd`/debian/tmp/usr/lib
	gzip -9 debian/tmp/usr/info/*
	cd debian && install -m 755 postinst postrm tmp/DEBIAN
	cp -p NEWS README TODO THANKS debian/copyright $(dtudp)
	cp -p debian/changelog $(dtudp)/changelog.Debian
	cp -p ChangeLog $(dtudp)/changelog
	cd $(dtudp) && gzip -9 changelog.Debian changelog
	dpkg-shlibdeps ptx
	strip debian/tmp/usr/bin/ptx
	dpkg-gencontrol
	cd debian/tmp && md5sum `find * -type f ! -regex "DEBIAN/.*"` >DEBIAN/md5sums
	chown -R root.root debian/tmp
	chmod -R go=rX debian/tmp
	dpkg --build debian/tmp ..

define checkdir
	test -f debian/rules
endef

binary: binary-indep binary-arch

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

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