summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 537d42bf9cc75b465cbee0170e550a28e87018de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
# -*- makefile -*-

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

%:
	dh $@ 
build:
	autoreconf -i

override_dh_builddeb:
	dh_builddeb -- -Zbzip2
	
override_dh_gencontrol:
	if [ -f "../.VYOS_DEV_BUILD" ]; then \
		dh_gencontrol -- -v999.dev; \
	else \
		dh_gencontrol; \
	fi