File: rules

package info (click to toggle)
libapache-mod-auth-radius 1.5.8-1.3
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 172 kB
  • ctags: 166
  • sloc: ansic: 1,401; makefile: 65
file content (60 lines) | stat: -rwxr-xr-x 1,135 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
56
57
58
59
60
#!/usr/bin/make -f

#export DH_VERBOSE=1
tmp := $(CURDIR)/debian/libapache2-mod-auth-radius

build: patch build-stamp

build-stamp:
	dh_testdir
	apxs2 -c mod_auth_radius-2.0.c
	ln -f .libs/mod_auth_radius-2.0.so .libs/mod_auth_radius.so
	touch build-stamp

patch:
#	if [ ! -f patch-stamp ]; then \
#	 patch -p1 < debian/patches/something.diff && \
#	 touch patch-stamp; \
#	fi

unpatch:
#	if [ -f patch-stamp ]; then \
#	 patch -Rp1 < debian/patches/something.diff && \
#	 rm -f patch-stamp; \
#	fi

clean: unpatch real-clean
real-clean:
	dh_testdir
	dh_testroot
	$(MAKE) clean
	dh_clean build-stamp .libs/mod_auth_radius.so

install: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs
	dh_apache2

binary-indep:
	#nothing to do

# Build architecture-dependent files here.
binary-arch: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs 
	dh_installdocs README
	dh_installexamples htaccess httpd.conf
	dh_strip
	dh_compress 
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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