File: rules

package info (click to toggle)
qstat 2.3g-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 496 kB
  • ctags: 558
  • sloc: ansic: 5,421; makefile: 99
file content (46 lines) | stat: -rwxr-xr-x 822 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
#!/usr/bin/make -f
# -*- Makefile -*-

export DH_COMPAT=2

tmp=$(shell pwd)/debian/tmp

binary: binary-indep binary-arch

binary-arch: build install
	dh_testdir
	dh_testroot
	dh_undocumented quakestat.1
	dh_installchangelogs CHANGES.txt
	dh_installdocs qstat.txt qstatdoc.html
	dh_installexamples template/*
	dh_installdeb
	dh_fixperms
	dh_compress
	dh_strip
	dh_shlibdeps
	dh_gencontrol
	dh_builddeb

binary-indep: build install

build: build-stamp
build-stamp:
	dh_testdir
	$(MAKE) CC=gcc CFLAGS="-O2 -g" linux
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp
	if [ -e Makefile ]; then $(MAKE) -i clean; fi
	dh_clean

install: install-stamp
install-stamp:
	dh_testdir
	dh_installdirs
	install -m 755 qstat debian/qstat/usr/bin/quakestat

.PHONY: binary binary-arch binary-indep clean