File: rules

package info (click to toggle)
castxml 0.1%2Bgit20180702-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,268 kB
  • sloc: cpp: 4,298; ansic: 267; sh: 85; makefile: 13
file content (23 lines) | stat: -rwxr-xr-x 581 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
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# clang pulls in atomics that require an extra library on armel 
ifeq ($(DEB_HOST_ARCH),armel)
export DEB_LDFLAGS_MAINT_APPEND=-latomic
endif 


CMAKE_FLAGS = -DCastXML_INSTALL_DOC_DIR:STRING=/usr/share/doc/castxml \
              -DLLVM_DIR=/usr/lib/llvm-4.0/cmake

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- $(CMAKE_FLAGS)

override_dh_installman:
	help2man -n "Create an XML representation of C++ declarations" --no-info debian/castxml/usr/bin/castxml  > castxml.1
	dh_installman castxml.1