File: rules

package info (click to toggle)
nestopia 1.47-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,588 kB
  • ctags: 16,847
  • sloc: cpp: 84,994; xml: 26,919; ansic: 1,490; makefile: 606; sh: 20
file content (32 lines) | stat: -rwxr-xr-x 708 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/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 except PIE (which breaks libretro)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all,-pie

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_build:
	dh_auto_build
	dh_auto_build --sourcedirectory=libretro -- $(PLATFORM)

override_dh_auto_clean:
	dh_auto_clean
	dh_auto_clean --sourcedirectory=libretro