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 " >> $@ 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