File: rules

package info (click to toggle)
virtualjaguar 2.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid
  • size: 10,524 kB
  • sloc: cpp: 52,722; ansic: 5,204; makefile: 123; sh: 7
file content (24 lines) | stat: -rwxr-xr-x 568 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/make -f
# -*- makefile -*-

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

# build the jaguar core and m68k libraries first,
# then build the actual emulator
override_dh_auto_build:
	make -f jaguarcore.mak V=1
	make -C src/m68000 V=1
	dh_auto_build -- V=1

# Convert icon to 32x32 for menu
	xpmtoppm res/vj.xpm | \
	pnmscale -xsize 32 -ysize 32 | \
	ppmtoxpm -name vj_xpm-32x32 > debian/vj-32x32.xpm

# install docs/WHATSNEW as changelog.gz (Debian Policy 12.7)
override_dh_installchangelogs:
	dh_installchangelogs docs/WHATSNEW

%:
	dh $@