1## Process this file with automake to produce Makefile.in
2## ------------------------------------------------------------------------
3## Makefile.am (toplevel)
4## autotools build system for dns_pipeline
5## ------------------------------------------------------------------------
6## Copyright (C) 2012-2017 Carnegie Mellon University. All Rights Reserved.
7## ------------------------------------------------------------------------
8## Authors: CERT Network Situational Awareness <netsa-help@cert.org>
9## ------------------------------------------------------------------------
10## GNU General Public License (GPL) Rights pursuant to Version 2, June 1991
11## Government Purpose License Rights (GPLR) pursuant to DFARS 252.227-7013
12## ------------------------------------------------------------------------
13
14
15ACLOCAL_AMFLAGS = -I m4
16
17# Avoid picking up MacOS X resource forks in "make dist"
18am__tar = COPY_EXTENDED_ATTRIBUTES_DISABLE=1 COPYFILE_DISABLE=1 ${AMTAR} cof - "$$tardir"
19
20SUBDIRS = include src etc doc
21
22utils-doc:
23	(cd $(top_builddir)/src && $(MAKE) docs)
24	(cd $(top_builddir)/doc && $(MAKE) docs)
25
26release-note-doc: NEWS
27	$(top_srcdir)/doc/news2xhtml.pl super_mediator gpl 10 < $(top_srcdir)/NEWS > doc/releases.xml
28
29make-doc-path:
30	mkdir -p $(top_builddir)/doc/html
31
32distclean-local:
33	rm -f $(top_builddir)/doc/releases.xml
34
35docs: make-doc-path utils-doc release-note-doc
36
37DISTCLEANFILES = $(SM_SUMMARY_FILE)
38
39EXTRA_DIST = include/mediator/config.h.cmake \
40	README \
41	doc/add-header.pl \
42	doc/add-header-md.pl \
43	doc/news2xhtml.pl \
44	doc/LICENSE.txt
45