File: rules

package info (click to toggle)
generate-ninja 0.0~git20221212.5e19d2f-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,236 kB
  • sloc: cpp: 83,746; python: 2,007; sh: 204; lisp: 129; objc: 122; makefile: 26
file content (40 lines) | stat: -rwxr-xr-x 991 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
#!/usr/bin/make -f
include /usr/share/dpkg/buildflags.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
CXXFLAGS += $(CPPFLAGS) -fPIE
LDFLAGS += -pie

include /usr/share/dpkg/architecture.mk
ifeq "$(DEB_HOST_ARCH)" "armel"
LDFLAGS += -latomic
endif

#Needed by gn-describe when building outside git tree
include /usr/share/dpkg/pkg-info.mk
export DEB_VERSION_UPSTREAM

#Fallback to c++ if clang is not available
ifeq (, $(shell which clang++))
export CXX = c++
endif

%:
	dh $@ --buildsystem=ninja --builddirectory=out

override_dh_auto_configure:
	python3 $(CURDIR)/build/gen.py

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	$(CURDIR)/out/gn_unittests
endif

override_dh_auto_install:
	#noop

override_dh_dwz:
	#Clang-14 does not seem to play nice with dwz #1016563

VERSION = $(shell out/gn --version)
execute_before_dh_installdocs:
	help2man --version-string="gn $(VERSION)" --name="Meta-build system that generates build files for Ninja" -N -o out/gn.1 out/gn