#!/usr/bin/make -f

%:
	dh $@ --parallel --with autoreconf

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
endif

override_dh_auto_configure:
	dh_auto_configure -- \
		--disable-static \
		--enable-sdl
