File: rules

package info (click to toggle)
folding-mode-el 0%2B20200825.748-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 784 kB
  • sloc: lisp: 3,072; makefile: 9
file content (14 lines) | stat: -rwxr-xr-x 347 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f

%:
	dh $@ --with elpa

# info page is not generated without this override
override_dh_elpa:
	dh_elpa
# support the nodoc build profile
ifneq ($(filter nodoc,$(DEB_BUILD_PROFILES)),)
	echo -e "\nnodoc build profile enabled, therefore not building docs.\n"
else
	makeinfo --no-split folding.texi -o debian/tmp/folding.info
endif