File: rules

package info (click to toggle)
spim 6.1-3
  • links: PTS
  • area: non-free
  • in suites: hamm, slink
  • size: 1,944 kB
  • ctags: 2,839
  • sloc: asm: 10,339; ansic: 9,404; yacc: 1,867; makefile: 713; lex: 583; sh: 95
file content (53 lines) | stat: -rwxr-xr-x 1,086 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/make -f
# This was originally made with the aid of debmake.

package=spim

build:	build-stamp
build-stamp:
	dh_testdir
	./Configure
	xmkmf

	make LEXCFLAGS="-O2" CDEBUGFLAGS="-O2"
	make xspim LEXCFLAGS="-O2" CDEBUGFLAGS="-O2"

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp
	-make clean
	rm -f Tests/tt.s
	rm -f Tests/tt.OK
	dh_clean

# Nothing to do
binary-indep:	build

binary-arch:	build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs
	make install BIN_DIR=`pwd`/debian/tmp/usr/bin MAN_DIR=`pwd`/debian/tmp/usr/man TRAP_DIR=`pwd`/debian/tmp/usr/lib/spim
	mv debian/tmp/usr/bin/xspim debian/tmp/usr/X11R6/bin/xspim
	install -m644 trap.handler debian/tmp/usr/lib/spim/trap.handler
	dh_installdocs README Documentation/* Tests
	dh_installmanpages
	dh_installchangelogs
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

source diff:
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

binary:	binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary