aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile
blob: 0b914e9f7eb918c9510ba383d4136d13c911e5f5 (plain)
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
TOPDIR = ..

# Generate adoc file that includes all chapters
ASCIIDOC = test-usermanual.adoc
ASCIIDOC_DEPS =
$(ASCIIDOC): $(TOPDIR)/common/chapters/*.adoc
	echo ":gfdl-enabled:" > $@
	echo ":program-name: Test" >> $@
	echo "" >> $@
	echo "Osmo GSM Manuals Shared Content Test" >> $@
	echo "====================================" >> $@
	echo "Oliver Smith <osmith@sysmocom.de>" >> $@
	echo "" >> $@
	for chapter in $(TOPDIR)/common/chapters/*.adoc; do \
		echo "include::$${chapter}[]" >> $@; \
	done;
CLEAN_FILES = $(ASCIIDOC)

include $(TOPDIR)/build/Makefile.asciidoc.inc

VTY_REFERENCE = test-vty-reference.xml
include $(TOPDIR)/build/Makefile.vty-reference.inc
include $(TOPDIR)/build/Makefile.common.inc


default: all check


.DEFAULT_GOAL := default
.PHONY: default