view doc/interpreter/graphics_properties.mk @ 20342:c3c1fb44f9b5

eliminate recursive make invocations in doc directory tree * doc/module.mk: New file created from doc/Makefile.am, doc/doxyhtml/Makefile.am, doc/liboctave/Makefile, doc/interpreter/Makefile.am, and doc/refcard/Makefile. * configure.ac (AC_OUTPUT): Don't generate doc/Makefile, doc/doxyhtml/Makefile, or doc/interpreter/Makefile. * Makefile.am (.NOTPARALLEL, AUTHORS, BUGS, INSTALL.OCTAVE): Delete targets. * config-images.sh, find-docstring-files.sh, geometryimages.m, graphics_properties.mk, images.awk, interpimages.m, plotimages.m, sparseimages.m, splineimages.m: Adapt to Makefile changes. * octave.texi, liboctave.texi: Use unique version file names. * etc/module.mk: Ensure icons build directory is created. (etc/icons/octave-logo.ico): Fix file name. * examples/module.mk (examples_code_SRC): New variable. * doc/Makefile.am, doc/doxyhtml/Makefile.am, doc/liboctave/Makefile.am, doc/interpreter/Makefile.am, doc/refcard/Makefile: Delete.
author John W. Eaton <jwe@octave.org>
date Fri, 03 Jul 2015 19:33:19 -0400
parents 4f6ae6b94abe
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-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)