blob: bbed8936b081c06fd0b62ab9deaa2882793ecf04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUBDIRS = ragel doc
DIST_SUBDIRS = $(SUBDIRS) aapl contrib examples test
dist_doc_DATA = CREDITS ChangeLog
EXTRA_DIST = ragel.vim
# This file is checked for by the configure script and its existence causes the
# parsers and the manual to not be built when the distribution is built.
dist-hook:
( \
echo "#!/bin/sh"; \
echo ""; \
echo "# Change to yes to enable building of parsers or manual. Reconfigure"; \
echo "# afterwards."; \
echo "build_parsers=no;"; \
echo "build_manual=no;"; \
) > $(distdir)/DIST
|