File: rules

package info (click to toggle)
epcr 2.3.12-1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 676 kB
  • ctags: 1,251
  • sloc: cpp: 5,730; ansic: 231; makefile: 31
file content (28 lines) | stat: -rwxr-xr-x 855 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
#!/usr/bin/make -f
# debian/rules for ncbi-epcr using
# Andreas Tille <tille@debian.org>, GPL

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(\([0-9]\+\):\)\?\(.*\)-.*/\3/p')
VER_MAJOR := $(shell echo $(VERSION) | sed 's/^\([0-9]\+\)\..*/\1/')
VER_MINOR := $(shell echo $(VERSION) | sed 's/^[0-9]\+\.\([0-9]\+\)\..*/\1/')
VER_BUILD := $(shell echo $(VERSION) | sed 's/^[0-9]\+\.[0-9]\+\.\(.*\)/\1/')

CFLAGS += -I. -g2 -DDEALLOCATE=0 -DVERSION=\"$(VERSION)\" -DVER_MAJOR=$(VER_MAJOR) -DVER_MINOR=$(VER_MINOR) -DVER_BUILD=$(VER_BUILD) -DSTANDALONE=1
LDFLAGS += -L.

%:
	dh $@

override_dh_auto_clean:
	rm -fr epcr
	rm -f *_depend.mk
	rm -f libepcr.a *.o
	rm -f e-PCR famap fahash re-PCR

override_dh_auto_build:
	$(MAKE) links depend all OPTIMIZE=6

override_dh_auto_install:
	# do nothing