Mercurial > hg > octave-nkf
comparison libinterp/parse-tree/module.mk @ 15281:03ef3a183129
build: Use INC rather than INCLUDES for consistent naming in libinterp Makefile.am.
* libinterp/Makefile.am, libinterp/interp-core/module.mk,
libinterp/interpfcn/module.mk, libinterp/octave-value/module.mk,
libinterp/operators/module.mk, libinterp/parse-tree/module.mk:
Use INC rather than INCLUDES for consistent naming.
author | Rik <rik@octave.org> |
---|---|
date | Tue, 04 Sep 2012 07:45:46 -0700 |
parents | cd8248cc6020 |
children | 3dcd96e1f657 |
comparison
equal
deleted
inserted
replaced
15280:2dd4f5930108 | 15281:03ef3a183129 |
---|---|
1 EXTRA_DIST += \ | 1 EXTRA_DIST += \ |
2 parse-tree/module.mk \ | 2 parse-tree/module.mk \ |
3 parse-tree/octave.gperf | 3 parse-tree/octave.gperf |
4 | 4 |
5 PARSER_INCLUDES = \ | 5 PARSER_INC = \ |
6 parse-tree/lex.h \ | 6 parse-tree/lex.h \ |
7 parse-tree/parse.h \ | 7 parse-tree/parse.h \ |
8 parse-tree/parse-private.h | 8 parse-tree/parse-private.h |
9 | 9 |
10 PARSER_SRC = \ | 10 PARSER_SRC = \ |
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 lex.lo lex.o oct-parse.lo oct-parse.o: \ |
15 AM_CXXFLAGS := $(filter-out -Wold-style-cast, $(AM_CXXFLAGS)) | 15 AM_CXXFLAGS := $(filter-out -Wold-style-cast, $(AM_CXXFLAGS)) |
16 | 16 |
17 PT_INCLUDES = \ | 17 PARSE_TREE_INC = \ |
18 parse-tree/pt-all.h \ | 18 parse-tree/pt-all.h \ |
19 parse-tree/pt-arg-list.h \ | 19 parse-tree/pt-arg-list.h \ |
20 parse-tree/pt-assign.h \ | 20 parse-tree/pt-assign.h \ |
21 parse-tree/pt-binop.h \ | 21 parse-tree/pt-binop.h \ |
22 parse-tree/pt-bp.h \ | 22 parse-tree/pt-bp.h \ |
42 parse-tree/pt-stmt.h \ | 42 parse-tree/pt-stmt.h \ |
43 parse-tree/pt-unop.h \ | 43 parse-tree/pt-unop.h \ |
44 parse-tree/pt-walk.h \ | 44 parse-tree/pt-walk.h \ |
45 parse-tree/pt.h \ | 45 parse-tree/pt.h \ |
46 parse-tree/token.h \ | 46 parse-tree/token.h \ |
47 $(PARSER_INCLUDES) | 47 $(PARSER_INC) |
48 | 48 |
49 PARSE_TREE_SRC = \ | 49 PARSE_TREE_SRC = \ |
50 parse-tree/pt-arg-list.cc \ | 50 parse-tree/pt-arg-list.cc \ |
51 parse-tree/pt-assign.cc \ | 51 parse-tree/pt-assign.cc \ |
52 parse-tree/pt-binop.cc \ | 52 parse-tree/pt-binop.cc \ |