File: graphics_properties.mk

package info (click to toggle)
octave 4.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 94,200 kB
  • ctags: 52,925
  • sloc: cpp: 316,850; ansic: 43,469; fortran: 23,670; sh: 13,805; yacc: 8,204; objc: 7,939; lex: 3,631; java: 2,127; makefile: 1,746; perl: 1,022; awk: 988
file content (39 lines) | stat: -rw-r--r-- 1,088 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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)