mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Per the suggestion of Greg Troxel, N1DAM, remove the need for the 'makeinfo'
dependency at build time by creating the HTML version of the manual along with
the info version at 'make dist' time. The removes the build dependency on
'makeinfo' that was introduced since the release of 3.1.
(cherry picked from commit 6efb7b64b2)
17 lines
526 B
Makefile
17 lines
526 B
Makefile
EXTRA_DIST = hamlib.cfg index.doxygen hamlib.css footer.html \
|
|
Hamlib_design.eps Hamlib_design.png
|
|
|
|
htmldir = $(docdir)/html
|
|
dist_html_DATA = Hamlib_design.png hamlib.html
|
|
|
|
SRCDOCLST = ../src/rig.c ../src/rotator.c ../src/tones.c ../src/locator.c \
|
|
../src/event.c ../src/conf.c ../src/mem.c ../src/settings.c
|
|
|
|
info_TEXINFOS = hamlib.texi
|
|
hamlib_TEXINFOS = nutshell.texi getting_started.texi utility_programs.texi \
|
|
fdl.texi
|
|
|
|
AM_MAKEINFOHTMLFLAGS = --no-headers --no-split
|
|
|
|
doc: hamlib.cfg $(SRCDOCLST)
|
|
doxygen hamlib.cfg
|