view doc/interpreter/graphics_properties.mk @ 21226:a55b8ece1ecd

reorganize octave_config_info again * build-env-features.sh: Don't include ENABLE_ items in the output. * toplev.cc (find_config_info): New static function. (Foctave_config_info): Put Octave configuration info in the main struct. Put the build system features and build environment info in substructures. Allow searching of all elements by keyword. * __have_feature__.m, doc/interpreter/testfun.txi: Fix name of build features substructure element. * geometryimages.m, interpimages.m, plotimages.m, sparseimages.m, splineimages.m: Use __have_feature__ to check for OSMESA.
author John W. Eaton <jwe@octave.org>
date Mon, 08 Feb 2016 23:14:56 -0500
parents c3c1fb44f9b5
children 496735a910c1
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-surfaceproperties.texi \
  interpreter/plot-textproperties.texi

define gen-propdoc-texi
  rm -f $@-t $@ && \
  $(top_builddir)/run-octave -f -q -H -p $(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-textproperties.texi: interpreter/genpropdoc.m
	$(AM_V_GEN)$(call gen-propdoc-texi,text)