File: rules

package info (click to toggle)
siggen 2.3.10-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 1,080 kB
  • sloc: ansic: 5,545; makefile: 188; sh: 79
file content (61 lines) | stat: -rwxr-xr-x 1,104 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
54
55
56
57
58
59
60
61
#!/usr/bin/make -f
# debian/rules for siggen.
# Written by Jens Peter Secher <jps@debian.org>.

# General compile options.
cflags := -g
ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	cflags += -O2
else
	cflags += -O0
endif

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp

build-stamp:
	dh_auto_build -- CFLAGS="$(cflags)" tones signalgen swgen siggen sweepgen fsynth soundinfo smix
	touch $@

install-stamp: build
	dh_testdir
	dh_testroot
	dh_prep
	cp -f $(CURDIR)/sgen.1 $(CURDIR)/signalgen.1
	dh_installman
	dh_install
	touch $@

binary-indep:

binary-arch: install-stamp
	dh_testdir
	dh_testroot
	dh_installdocs
	dh_installchangelogs CHANGES
	dh_installexamples
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch

clean-patched:
	dh_testdir
	dh_testroot
	-rm -f $(CURDIR)/*-stamp
	rm -f  $(CURDIR)/signalgen.1
	$(MAKE) clean
	dh_clean

clean: clean-patched

.PHONY: binary binary-indep binary-archbuild build clean clean-patched