annotate src/liblo-0.26/doc/Makefile.am @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 8a15ff55d9af
children
rev   line source
cannam@89 1 ## Process this file with automake to produce Makefile.in
cannam@89 2 MAINTAINERCLEANFILES=Makefile.in
cannam@89 3
cannam@89 4 CLEANFILES=doxygen-build.stamp
cannam@89 5
cannam@89 6 DOX=reference.doxygen
cannam@89 7
cannam@89 8 EXTRA_DIST=
cannam@89 9
cannam@89 10 INSTIMAGES=html/doxygen.png
cannam@89 11
cannam@89 12 DOC_STAMPS=html-build.stamp
cannam@89 13
cannam@89 14 DOC_DIR=$(HTML_DIR)
cannam@89 15
cannam@89 16 all-local: doxygen-build.stamp
cannam@89 17
cannam@89 18 doxygen-build.stamp: $(DOX) ../lo/lo.h ../lo/lo_types.h ../lo/lo_lowlevel.h \
cannam@89 19 ../lo/lo_osc_types.h
cannam@89 20 @echo '*** Running doxygen ***'
cannam@89 21 doxygen $(DOX)
cannam@89 22 touch doxygen-build.stamp
cannam@89 23
cannam@89 24 clean-local:
cannam@89 25 rm -f *~ *.bak $(DOC_STAMPS) || true
cannam@89 26 if test -d html; then rm -fr html; fi
cannam@89 27 if test -d latex; then rm -fr latex; fi
cannam@89 28 if test -d man; then rm -fr man; fi
cannam@89 29
cannam@89 30 distclean-local: clean
cannam@89 31 rm -f *.stamp || true
cannam@89 32 if test -d html; then rm -rf html; fi