comparison libinterp/parse-tree/module.mk @ 19826: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 a941a65c7cb8
children 2350fc8ba960
comparison
equal deleted inserted replaced
19825:b254a2e0859c 19826:4f6ae6b94abe
82 ## Don't use a pipeline to process gperf output since if gperf 82 ## Don't use a pipeline to process gperf output since if gperf
83 ## is missing but sed is not, the exit status of the pipeline 83 ## is missing but sed is not, the exit status of the pipeline
84 ## will still be success and we will end up creating an empty 84 ## will still be success and we will end up creating an empty
85 ## oct-gperf.h file. 85 ## oct-gperf.h file.
86 parse-tree/oct-gperf.h: parse-tree/octave.gperf 86 parse-tree/oct-gperf.h: parse-tree/octave.gperf
87 $(GPERF) -t -C -D -G -L C++ -Z octave_kw_hash $< > $@-t1 87 $(AM_V_GEN)rm -f $@-t $@t1 $@ && \
88 $(SED) 's,lookup\[,gperf_lookup[,' < $@-t1 > $@-t 88 $(GPERF) -t -C -D -G -L C++ -Z octave_kw_hash $< > $@-t1 && \
89 mv $@-t $@ 89 $(SED) 's,lookup\[,gperf_lookup[,' < $@-t1 > $@-t && \
90 mv $@-t $@ && \
90 rm -f $@-t1 91 rm -f $@-t1
91 92
92 parse-tree/oct-parse.yy: parse-tree/oct-parse.in.yy 93 parse-tree/oct-parse.yy: parse-tree/oct-parse.in.yy
93 $(call subst-bison-api-decls,octave_) 94 $(AM_V_GEN)$(call subst-bison-api-decls,octave_)
94 95
95 noinst_LTLIBRARIES += \ 96 noinst_LTLIBRARIES += \
96 parse-tree/libparse-tree.la \ 97 parse-tree/libparse-tree.la \
97 parse-tree/libparser.la 98 parse-tree/libparser.la
98 99