File: Makefile.am

package info (click to toggle)
geany-plugins 2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,832 kB
  • sloc: ansic: 107,883; sh: 5,567; makefile: 1,531; sed: 16
file content (30 lines) | stat: -rw-r--r-- 605 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
include $(top_srcdir)/build/vars.docs.mk
plugin = geanygendoc
pluginhtmldocdir = $(plugindocdir)/html

# CSS used in the manual, in the order it should be used
MANUAL_CSS = \
	html4css1.css \
	manual.css

EXTRA_DIST = $(MANUAL_CSS)

dist_plugindoc_DATA = \
	manual.rst

dist_pluginhtmldoc_DATA = \
	manual.html

if BUILD_RST
manual-combined.css: $(MANUAL_CSS)
	$(AM_V_GEN) cat $^ > $@
manual.html: manual.rst manual-combined.css
	$(AM_V_GEN) $(RST2HTML) -d --strict \
		--stylesheet-path manual-combined.css \
		$(srcdir)/manual.rst $@

CLEANFILES = \
	manual-combined.css \
	manual.html

endif BUILD_RST