blob: 74eccb3d039ff7247fd193b05d4cc81e004fef23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
doc_files = README TODO
export symlinks := kernel-config profile-config rc-config bashcomp-config
SUBDIRS = doc man misc bin libs modules
MAINTAINERCLEANFILES = aclocal.m4 \
configure \
Makefile.in \
config/ \
*.html
EXTRA_DIST = autogen.bash \
ChangeLog \
$(doc_files)
html: $(foreach f, $(doc_files), $(f).html)
cd doc && $(MAKE) html
%.html: %
@RST2HTML@ < $? > $@
|