######################## -*- Mode: Makefile-Automake -*- ###################### ## ## 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. ## ## Makefile.am -- ## ## Author : Peter A. Buhr ## Created On : Wed Jun 28 12:07:10 2017 ## Last Modified By : Peter A. Buhr ## Last Modified On : Wed Jun 28 23:11:56 2017 ## Update Count : 15 ############################################################################### BUILT_SOURCES = parser.hh AM_YFLAGS = -d -t -v SRC = lex.ll \ parser.yy \ token.cc \ filter.cc \ main.cc tools_prettyprinter_PROGRAMS = pretty tools_prettyprinterdir = ../ pretty_SOURCES = ${SRC} pretty_LDADD = ${LEXLIB} -ldl # yywrap pretty_CXXFLAGS = -Wno-deprecated -Wall -DYY_NO_INPUT -O2 -g -std=c++14 MAINTAINERCLEANFILES = parser.output