File: rules

package info (click to toggle)
original-awk 2011-08-10-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 644 kB
  • sloc: ansic: 8,562; yacc: 407; makefile: 137; sh: 7
file content (55 lines) | stat: -rwxr-xr-x 1,532 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
#!/usr/bin/make -f

package = original-awk
docdir = debian/tmp/usr/share/doc/$(package)

CC = gcc
CFLAGS := `dpkg-buildflags --get CFLAGS` -Wall
LDFLAGS := `dpkg-buildflags --get LDFLAGS`
CPPFLAGS := `dpkg-buildflags --get CPPFLAGS`
STRIP = true

ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
  STRIP = strip --remove-section=.comment --remove-section=.note
endif

build:
	$(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS) $(CPPFLAGS)" ALLOC="$(LDFLAGS)"
	touch build

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

binary-indep: build

binary-arch: build
	rm -rf debian/tmp
	install -d debian/tmp/DEBIAN $(docdir)
	cd debian/tmp && install -d usr/bin usr/share/man/man1
	install -m 755 a.out debian/tmp/usr/bin/$(package)
	cd debian && install -m 755 postinst prerm tmp/DEBIAN
	install -m 644 debian/changelog $(docdir)/changelog.Debian
	install -m 644 awk.1 debian/tmp/usr/share/man/man1/$(package).1
	cp -p README FIXES debian/copyright $(docdir)
	cd $(docdir) && gzip -9 FIXES changelog.Debian
	ln -s FIXES.gz $(docdir)/changelog.gz
	$(STRIP) debian/tmp/usr/bin/*
	gzip -r9 debian/tmp/usr/share/man/man1
	dpkg-shlibdeps debian/tmp/usr/bin/*
	dpkg-gencontrol
	cd debian/tmp && \
		md5sum `find * -type f ! -regex "DEBIAN/.*"` > DEBIAN/md5sums
	chown -R 0:0 debian/tmp
	chmod -R go=rX debian/tmp
	dpkg --build debian/tmp ..

binary: binary-indep binary-arch

build-arch: build

build-indep: build

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