summaryrefslogtreecommitdiff
path: root/debian/rules
blob: c1ce44bf8949f53779580e2bb65d7a9aa2d8f497 (plain)
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
#!/usr/bin/make -f

export CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
export CPPFLAGS := $(shell dpkg-buildflags --get CPPFLAGS)
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)

export ACLOCAL := aclocal -I m4

%:
	dh $@ --with=autotools-dev --with=autoreconf

override_dh_clean:
	[ ! -f buildsys.mk ] || $(MAKE) distclean
	dh_clean

override_dh_installexamples:
	sed -e 's,\(libdir = \$${prefix}/lib\)/.*$$,\1,' < buildsys.mk > buildsys.mk.new
	mv -f buildsys.mk.new buildsys.mk
	dh_installexamples -X.dep

override_dh_compress:
	dh_compress -Xusr/share/doc/libmowgli-dev/examples

override_dh_strip:
	dh_strip --dbg-package=libmowgli2-dbg

.PHONY: override_dh_clean override_dh_installexamples override_dh_compress override_dh_strip