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

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

# Nestopia uses shifted negative integers
export DEB_CFLAGS_MAINT_APPEND = -fpermissive
export DEB_CXXFLAGS_MAINT_APPEND = -fpermissive

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

ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH)

ifeq ($(ARCH),armhf)
	PLATFORM=platform="armv hardfloat"
endif

export PREFIX=/usr
export BINDIR=/usr/games

%:
	dh $@

override_dh_auto_install:
	dh_auto_install
	mv debian/nestopia/usr/bin debian/nestopia/usr/games
