File: rules

package info (click to toggle)
eegdev 0.2-12
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,088 kB
  • sloc: ansic: 32,298; sh: 10,941; makefile: 251; lex: 138; yacc: 130; xml: 29
file content (30 lines) | stat: -rwxr-xr-x 684 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
#!/usr/bin/make -f
# -*- makefile -*-

CONFFLAGS = --without-gtec --with-act2=check --with-xdf=check --with-tia

ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	export DEB_CFLAGS_MAINT_APPEND=-O3 -Wall -Wextra
else
	export DEB_CFLAGS_MAINT_APPEND=-Wall -Wextra
endif
export DEB_LDFLAGS_MAINT_APPEND=-Wl,-Bsymbolic-functions
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@

override_dh_autoreconf:
	dh_autoreconf ./autogen.sh

override_dh_auto_configure:
	dh_auto_configure -- $(CONFFLAGS)

override_dh_compress:
	dh_compress --exclude=examples

override_dh_installdocs:
	dh_installdocs --link-doc=libeegdev0t64

execute_before_dh_missing:
	find debian -name "*.la" -delete