File: rules

package info (click to toggle)
dbengine 1.1-11
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 644 kB
  • ctags: 162
  • sloc: perl: 1,460; sql: 601; sh: 79; makefile: 43
file content (41 lines) | stat: -rwxr-xr-x 787 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
#!/usr/bin/make -f
# debian/rules for dbengine that uses debhelper

# This is the debhelper compatability version to use.
export DH_COMPAT=1

build:

clean:
	dh_clean

install:
	dh_testdir
	dh_testroot
	dh_clean
	dh_installdirs
	install base/dbengine.cgi `pwd`/debian/tmp/usr/lib/cgi-bin
	install util/*.p* `pwd`/debian/tmp/usr/lib/cgi-bin/util

binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installdebconf
	dh_installdocs html samples util/test/PostgreSQL/descdb.sql
	dh_installmanpages
	dh_installchangelogs
	dh_installchangelogs History upstream
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_perl
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch: build install

binary: binary-indep binary-arch

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