File: rules

package info (click to toggle)
libapache2-mod-lisp 1.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 200 kB
  • sloc: ansic: 2,085; makefile: 24; sh: 21
file content (20 lines) | stat: -rwxr-xr-x 404 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f

#export DH_VERBOSE = 1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

PKGDIR=$(CURDIR)/debian/libapache2-mod-lisp
MODDIR=$(PKGDIR)/usr/lib/apache2/modules

%:
	dh $@ --with apache2

override_dh_auto_clean:
	rm -f mod_lisp.la mod_lisp.lo mod_lisp.o mod_lisp.slo
	rm -fr .deps .libs

override_dh_auto_install:
override_dh_install:
	mkdir -p $(MODDIR)
	cp .libs/mod_lisp.so $(MODDIR)