######################### -*- Mode: Makefile-Gmake -*- ########################
##
## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
##
## The contents of this file are covered under the licence agreement in the
## file "LICENCE" distributed with Cforall.
##
## module.mk -- 
##
## Author           : Peter A. Buhr
## Created On       : Sat May 16 15:29:09 2015
## Last Modified By : Peter A. Buhr
## Last Modified On : Tue Aug 16 17:28:34 2016
## Update Count     : 101
###############################################################################

BUILT_SOURCES = Parser/parser.h

AM_YFLAGS = -d -t -v

SRC += Parser/parser.yy \
       Parser/lex.ll \
       Parser/TypedefTable.cc \
       Parser/ParseNode.cc \
       Parser/DeclarationNode.cc \
       Parser/ExpressionNode.cc \
       Parser/StatementNode.cc \
       Parser/InitializerNode.cc \
       Parser/TypeData.cc \
       Parser/LinkageSpec.cc \
       Parser/parseutility.cc

MAINTAINERCLEANFILES += Parser/parser.output
