view doc/interpreter/graphics_properties.mk @ 31145:7c5cb8f8a21e

pagetranspose.m, pagectranspose.m: New functions for transposing the page (3-D) of an N-D array. * pagectranspose.m, pagetranspose.m: New functions. * scripts/general/module.mk: Add new functions to build system. * etc/NEWS.8.md: Announce new functions. * expr.txi: Add functions to Octave manual.
author Rik <rik@octave.org>
date Mon, 11 Jul 2022 22:38:57 -0700
parents f816a8c44924
children
line wrap: on
line source

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

define gen-propdoc-texi
  rm -f $@-t $@ && \
  $(top_builddir)/run-octave -disable-asan --norc --silent --no-history --path $(srcdir)/interpreter --eval "genpropdoc ('$(1)');" > $@-t && \
  mv $@-t $@
endef

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

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

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

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

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

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

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

interpreter/plot-scatterproperties.texi: interpreter/genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,scatter)

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