File: rules

package info (click to toggle)
calf 0.90.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,604 kB
  • sloc: cpp: 36,939; xml: 12,594; ansic: 4,341; python: 1,537; makefile: 209; lex: 51; sh: 32
file content (21 lines) | stat: -rwxr-xr-x 428 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

CONFIG_FLAGS = --enable-experimental

ifeq (i386,$(DEB_HOST_ARCH))
	CONFIG_FLAGS += --enable-sse
else ifeq (amd64,$(DEB_HOST_ARCH))
	CONFIG_FLAGS += --enable-sse
endif


%:
	dh $@ --with autoreconf

override_dh_auto_configure:
	dh_auto_configure -- $(CONFIG_FLAGS)

override_dh_install:
	dh_install
	sed -i "/dependency_libs/ s/'.*'/''/" `find . -name '*.la'`