File: rules

package info (click to toggle)
vbetool 1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 824 kB
  • ctags: 471
  • sloc: sh: 3,497; ansic: 1,221; makefile: 20
file content (14 lines) | stat: -rwxr-xr-x 251 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f

DEB_HOST_ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH)
ifeq ($(DEB_HOST_ARCH), $(findstring $(DEB_HOST_ARCH),i386 lpia))
	EMU =
else
	EMU = --with-x86emu
endif

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- $(EMU)