2009-06-22 18:06:58 +03:00
|
|
|
#!/usr/bin/make -f
|
2010-04-05 06:42:07 +03:00
|
|
|
# This file is in the public domain.
|
|
|
|
# You may freely use, modify, distribute, and relicense it.
|
2009-06-22 18:06:58 +03:00
|
|
|
|
2010-04-05 06:42:07 +03:00
|
|
|
build clean install binary-arch binary-indep binary:
|
|
|
|
+dh --parallel $(opt_no_act) $@
|
2009-06-22 18:06:58 +03:00
|
|
|
|
2010-04-05 06:42:07 +03:00
|
|
|
override_dh_auto_clean:
|
|
|
|
dh_auto_clean
|
|
|
|
sh debian/clean.sh
|
2009-06-22 18:06:58 +03:00
|
|
|
|
2010-04-05 06:42:07 +03:00
|
|
|
override_dh_auto_configure:
|
|
|
|
AUTOMAKE="automake --foreign" autoreconf -is
|
|
|
|
dh_auto_configure -- $(opt_optimize) $(opt_quiet) LDFLAGS=-Wl,-z,defs
|
2009-06-22 18:06:58 +03:00
|
|
|
|
2010-04-05 06:42:07 +03:00
|
|
|
opt_optimize = CFLAGS="-g -O2"
|
|
|
|
opt_no_act =
|
|
|
|
opt_quiet =
|
2009-06-22 18:06:58 +03:00
|
|
|
|
2010-04-05 06:42:07 +03:00
|
|
|
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
|
|
|
|
opt_optimize = CFLAGS="-g -O0"
|
2009-06-22 18:06:58 +03:00
|
|
|
endif
|
|
|
|
|
2010-04-05 06:42:07 +03:00
|
|
|
ifneq (,$(findstring n,$(MAKEFLAGS)))
|
|
|
|
opt_no_act = --no-act
|
|
|
|
endif
|
2009-06-22 18:06:58 +03:00
|
|
|
|
2010-04-05 06:42:07 +03:00
|
|
|
ifneq (,$(filter quiet,$(DEB_BUILD_OPTIONS)))
|
|
|
|
opt_quiet = --quiet
|
|
|
|
MAKEFLAGS += --quiet
|
|
|
|
endif
|