verilator/docs/Makefile.in

55 lines
1.7 KiB
Makefile
Raw Normal View History

2019-06-13 11:19:44 +00:00
#*****************************************************************************
# DESCRIPTION: Verilator documentation: Makefile pre-configure version
#
# This file is part of Verilator.
#
2019-11-08 03:33:59 +00:00
# Code available from: https://verilator.org
2019-06-13 11:19:44 +00:00
#
#*****************************************************************************
#
2020-01-06 23:05:53 +00:00
# Copyright 2003-2020 by Wilson Snyder. This program is free software; you can
2019-06-13 11:19:44 +00:00
# redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
#
# Verilator is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#****************************************************************************/
#
# This file is intended only to be called from the top-level Verilator Makefile.
#### Start of system configuration section. ####
2019-11-08 00:52:56 +00:00
ASCIIDOCTOR = asciidoctor
2019-06-13 11:19:44 +00:00
DOXYGEN = doxygen
#### End of system configuration section. ####
######################################################################
.SUFFIXES:
default:
@echo "error: make not supported here, run 'make docs' from Verilator top-level"
2019-11-08 00:52:56 +00:00
%.html: %.adoc
$(ASCIIDOCTOR) $< -n -o $@
2019-06-13 11:19:44 +00:00
clean mostlyclean distclean maintainer-clean::
rm -f $(SCRIPTS) *.tmp
rm -f *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.log
rm -f *.pg *.pgs *.toc *.tp *.tps *.vr *.vrs *.idx
rm -f *.ev *.evs *.ov *.ovs *.cv *.cvs *.ma *.mas
rm -f *.tex
distclean maintainer-clean::
2019-11-08 00:52:56 +00:00
rm -f *.info* *.1 *.html *.pdf $(INFOS)
2019-06-13 11:19:44 +00:00
rm -f Makefile
.PHONY: doxygen
doxygen:
$(DOXYGEN) doxygen.config