Mercurial > hg > octave-lyh
comparison libinterp/parse-tree/module.mk @ 15413:3dcd96e1f657
build: Comment and add FIXME notes for automake rules which never fire.
* interp-core/module.mk: Comment out extra CPPFLAGS rule for display.lo.
Add FIXME note on how to resolve this.
* parse-tree/module.mk: Comment out AM_CXXFLAGS filter rule for lex.lo,
oct-parse.lo. Add FIXME note on how to resolve this.
author | Rik <rik@octave.org> |
---|---|
date | Tue, 18 Sep 2012 11:33:48 -0700 |
parents | 03ef3a183129 |
children | 6ea536cb7360 39096b290a2f |
comparison
equal
deleted
inserted
replaced
15412:9128fa93fb21 | 15413:3dcd96e1f657 |
---|---|
9 | 9 |
10 PARSER_SRC = \ | 10 PARSER_SRC = \ |
11 parse-tree/lex.ll \ | 11 parse-tree/lex.ll \ |
12 parse-tree/oct-parse.yy | 12 parse-tree/oct-parse.yy |
13 | 13 |
14 lex.lo lex.o oct-parse.lo oct-parse.o: \ | 14 ## FIXME: Automake does not support per-object rules. |
15 AM_CXXFLAGS := $(filter-out -Wold-style-cast, $(AM_CXXFLAGS)) | 15 ## These rules could be emulated by creating a new convenience |
16 ## library and using per-library rules. Or we can just live | |
17 ## with the extra warnings about old-sytle-casts. (09/18/2012) | |
18 #lex.lo lex.o oct-parse.lo oct-parse.o: \ | |
19 # AM_CXXFLAGS := $(filter-out -Wold-style-cast, $(AM_CXXFLAGS)) | |
16 | 20 |
17 PARSE_TREE_INC = \ | 21 PARSE_TREE_INC = \ |
18 parse-tree/pt-all.h \ | 22 parse-tree/pt-all.h \ |
19 parse-tree/pt-arg-list.h \ | 23 parse-tree/pt-arg-list.h \ |
20 parse-tree/pt-assign.h \ | 24 parse-tree/pt-assign.h \ |