view doc/interpreter/graphics_properties.mk @ 20059:cf9b94a89620

Document get_home_directory in Octave manual and NEWS file. * NEWS: Add get_home_directory to list of new functions. * system.txi: Add get_home_directory to manual. * sysdep.cc(Fget_home_directory): Use preferred docstring format of single line summary sentence followed by second paragragh of explanation. Add BIST test.
author Rik <rik@octave.org>
date Thu, 02 Apr 2015 15:36:38 -0700
parents 4f6ae6b94abe
children c3c1fb44f9b5
line wrap: on
line source

GRAPH_PROP_TEXI_SRC= \
  plot-axesproperties.texi \
  plot-figureproperties.texi \
  plot-imageproperties.texi \
  plot-lineproperties.texi \
  plot-patchproperties.texi \
  plot-rootproperties.texi \
  plot-surfaceproperties.texi \
  plot-textproperties.texi

define gen-propdoc-texi
  rm -f $@-t $@ && \
  $(top_builddir)/run-octave -f -q -H -p $(srcdir) --eval "genpropdoc ('$(1)');" > $@-t && \
  mv $@-t $@
endef

plot-axesproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,axes)

plot-figureproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,figure)

plot-imageproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,image)

plot-lineproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,line)

plot-patchproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,patch)

plot-rootproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,root)

plot-surfaceproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,surface)

plot-textproperties.texi: genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,text)