#!/usr/bin/make -f
# -*- makefile -*-

TARGET=gemdropx

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# enable all hardening options
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@

override_dh_auto_build:
	dh_auto_build --  DEB_CFLAGS="$(CFLAGS)" SOUND=YES JOY=YES DATA_PREFIX=/usr/share/games/$(TARGET)

override_dh_auto_install:

