view doc/interpreter/graphics_properties.mk @ 19792:4f6ae6b94abe

make --enable-silent-rules configure option more useful * sparse-mx-ops: Rename from smx-ops. * genpropdoc.m: Write to stdout if filename is not supplied. * Makefile.am, build-aux/common.mk, doc/interpreter/Makefile.am, doc/interpreter/graphics_properties.mk, etc/icons/Makefile.am, libgui/Makefile.am, libinterp/Makefile.am, libinterp/corefcn/module.mk, libinterp/octave-value/module.mk, libinterp/operators/module.mk, libinterp/parse-tree/module.mk, liboctave/cruft/module.mk, liboctave/cruft/ranlib/module.mk, liboctave/cruft/slatec-fn/module.mk, liboctave/numeric/module.mk, liboctave/operators/module.mk, scripts/Makefile.am, scripts/java/module.mk, src/Makefile.am, test/Makefile.am: Preface rules with $(AM_V_GEN) or similar as needed. Improve consistency of rules. Prefer commands that write to stdout, redirecting output to $@-t, then moving to $@. * doc/interpreter/images.awk, libinterp/dldfcn/config-module.awk: Generate rules with $(AM_V_GEN).
author John W. Eaton <jwe@octave.org>
date Fri, 20 Feb 2015 17:18:19 -0500
parents 1f2a16d41ba2
children
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)