source: src/Parser/module.mk @ 01fac29

ast-experimental
Last change on this file since 01fac29 was c468150, checked in by Andrew Beach <ajbeach@…>, 15 months 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
RevLine 
[b87a5ed]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##
[fc846ae]8## module.mk --
[b87a5ed]9##
[56c3935]10## Author           : Peter A. Buhr
[b87a5ed]11## Created On       : Sat May 16 15:29:09 2015
12## Last Modified By : Peter A. Buhr
[07de76b]13## Last Modified On : Sat Dec 14 07:34:47 2019
14## Update Count     : 107
[b87a5ed]15###############################################################################
[51b7345]16
[44f44617]17BUILT_SOURCES = Parser/parser.hh
[166793b]18
[2fc94ced]19AM_YFLAGS = -d -t -v -Wno-yacc
[56c3935]20
[07de76b]21SRC += \
[51b7345]22       Parser/DeclarationNode.cc \
[c468150]23       Parser/DeclarationNode.h \
[51b7345]24       Parser/ExpressionNode.cc \
[c468150]25       Parser/ExpressionNode.h \
[51b7345]26       Parser/InitializerNode.cc \
[c468150]27       Parser/InitializerNode.h \
[5339a87]28       Parser/lex.ll \
[07de76b]29       Parser/ParseNode.cc \
[5339a87]30       Parser/ParseNode.h \
31       Parser/parser.yy \
32       Parser/ParserTypes.h \
33       Parser/parserutility.cc \
34       Parser/parserutility.h \
[cbd1ba8]35       Parser/RunParser.cpp \
36       Parser/RunParser.hpp \
[07de76b]37       Parser/StatementNode.cc \
[c468150]38       Parser/StatementNode.h \
[51b7345]39       Parser/TypeData.cc \
[5339a87]40       Parser/TypeData.h \
[07de76b]41       Parser/TypedefTable.cc \
[5339a87]42       Parser/TypedefTable.h
[d3b7937]43
[4fd45bc]44MOSTLYCLEANFILES += Parser/lex.cc Parser/parser.cc Parser/parser.hh Parser/parser.output
Note: See TracBrowser for help on using the repository browser.