netlist: add man target to netlist makefile.

This commit is contained in:
couriersud 2020-08-05 21:43:54 +02:00
parent 738e9cc136
commit 2c799e1160
4 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,5 @@
build/html/*
build/man/*
build/doxy/*
build/obj/*
buildVS/Release/*

View File

@ -844,7 +844,7 @@ EXCLUDE_SYMBOLS =
# that contain example code fragments that are included (see the \include
# command).
EXAMPLE_PATH = ../documentation ../examples
EXAMPLE_PATH = ../documentation ../examples ./html
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and

View File

@ -251,7 +251,7 @@ MAKEFILE_TARGETS_WITHOUT_INCLUDE := gcc9 clang clang-5 mingw doc native maketree
# PHONY
#-------------------------------------------------
.PHONY: all gcc9 clang clang-5 mingw doc native maketree $(DEPEND) depend runtests
.PHONY: all gcc9 clang clang-5 mingw doc man native maketree $(DEPEND) depend runtests
#-------------------------------------------------
# all
@ -361,8 +361,13 @@ mingw:
# LDEXTRAFLAGS = -municode
#
man: nltool$(EXESUFFIX) nlwav$(EXESUFFIX)
@mkdir -p man
@mkdir -p html
help2man --include=nltool.help2man --no-info ./nltool$(EXESUFFIX) > man/nltool.1
groff -mandoc -Thtml man/nltool.1 > html/nltool.html
doc: nltool$(EXESUFFIX)
doc: nltool$(EXESUFFIX) nlwav$(EXESUFFIX)
./nltool$(EXESUFFIX) -c docheader > ../documentation/devsyn.dox.h
$(DOXYGEN) doxygen.conf

View File

@ -0,0 +1,5 @@
[see also]
More documentation for the
.B nltool
program is available in doxygen format.