File: rules

package info (click to toggle)
sc 7.16-1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,116 kB
  • sloc: ansic: 18,674; yacc: 1,334; sh: 1,127; makefile: 187; lisp: 99; sed: 4
file content (22 lines) | stat: -rwxr-xr-x 425 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
#!/usr/bin/make -f
# -*- makefile -*-

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

%:
	dh $@

override_dh_auto_configure:
	# This is not an automake created configure
	./configure

override_dh_auto_build:
	dh_auto_build -- all sc.1 psc.1 CFLAGS="-Wall -DSYSV3 -ffloat-store $(CFLAGS)"

override_dh_auto_install:
	# dh_auto_install

override_dh_auto_clean:
	dh_auto_clean
	find . -name '*~' -exec rm {} \;