File: rules

package info (click to toggle)
lintian 2.4.3%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 8,228 kB
  • ctags: 457
  • sloc: perl: 8,492; sh: 5,561; makefile: 1,971; ansic: 143; python: 19; tcl: 4; sed: 2
file content (32 lines) | stat: -rwxr-xr-x 928 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/make -f

build:

binary-arch:

binary-indep:
	install -d debian/tmp/DEBIAN
	install -m 0644 debian/config debian/tmp/DEBIAN
	install -m 0755 debian/preinst debian/tmp/DEBIAN
	install -m 0755 debian/postinst debian/tmp/DEBIAN
	install -m 0755 debian/prerm debian/tmp/DEBIAN
	install -m 0755 debian/postrm debian/tmp/DEBIAN
	install -m 0644 debian/triggers debian/tmp/DEBIAN
	install -d debian/tmp/usr/share/doc/maintainer-scripts
	install -m 0644 debian/changelog \
	  debian/tmp/usr/share/doc/maintainer-scripts/changelog
	gzip -9 debian/tmp/usr/share/doc/maintainer-scripts/changelog
	dpkg-gencontrol -isp
	dpkg --build debian/tmp ..

binary: binary-arch binary-indep

# Make sure we see dh_clean even in a rule clean depends on.  Not the point of
# this test suite, but a convenient place to put it.
clean: clean1 clean2 clean3
clean1:
clean2:
	dh_clean
clean3:

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