source: src/Parser/module.mk@ fa2c005

ADT
Last change on this file since fa2c005 was c468150, checked in by Andrew Beach <ajbeach@…>, 2 years ago

Split up ParseNode.h so that headers match implementation. May have a bit less to include total because of it.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1######################### -*- Mode: Makefile-Gmake -*- ########################
2##
3## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
4##
5## The contents of this file are covered under the licence agreement in the
6## file "LICENCE" distributed with Cforall.
7##
8## module.mk --
9##
10## Author : Peter A. Buhr
11## Created On : Sat May 16 15:29:09 2015
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Sat Dec 14 07:34:47 2019
14## Update Count : 107
15###############################################################################
16
17BUILT_SOURCES = Parser/parser.hh
18
19AM_YFLAGS = -d -t -v -Wno-yacc
20
21SRC += \
22 Parser/DeclarationNode.cc \
23 Parser/DeclarationNode.h \
24 Parser/ExpressionNode.cc \
25 Parser/ExpressionNode.h \
26 Parser/InitializerNode.cc \
27 Parser/InitializerNode.h \
28 Parser/lex.ll \
29 Parser/ParseNode.cc \
30 Parser/ParseNode.h \
31 Parser/parser.yy \
32 Parser/ParserTypes.h \
33 Parser/parserutility.cc \
34 Parser/parserutility.h \
35 Parser/RunParser.cpp \
36 Parser/RunParser.hpp \
37 Parser/StatementNode.cc \
38 Parser/StatementNode.h \
39 Parser/TypeData.cc \
40 Parser/TypeData.h \
41 Parser/TypedefTable.cc \
42 Parser/TypedefTable.h
43
44MOSTLYCLEANFILES += Parser/lex.cc Parser/parser.cc Parser/parser.hh Parser/parser.output
Note: See TracBrowser for help on using the repository browser.