source: src/ResolvExpr/module.mk @ 60c3d87e

Last change on this file since 60c3d87e was 5bf3976, checked in by Andrew Beach <ajbeach@…>, 18 months ago

Header Clean-Up: Created new headers for new AST typeops and moved declarations.

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[6e7e2b36]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##
[e4d829b]8## module.mk --
[6e7e2b36]9##
10## Author           : Richard C. Bilson
11## Created On       : Mon Jun  1 17:49:17 2015
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Mon Jun  1 17:53:28 2015
14## Update Count     : 1
15###############################################################################
16
[7abee38]17SRC_RESOLVEXPR = \
18      ResolvExpr/AdjustExprType.cc \
[5bf3976]19      ResolvExpr/AdjustExprType.hpp \
[7abee38]20      ResolvExpr/Alternative.cc \
21      ResolvExpr/AlternativeFinder.cc \
[5339a87]22      ResolvExpr/AlternativeFinder.h \
23      ResolvExpr/Alternative.h \
[99d4584]24      ResolvExpr/Candidate.cpp \
25      ResolvExpr/CandidateFinder.cpp \
[5339a87]26      ResolvExpr/CandidateFinder.hpp \
27      ResolvExpr/Candidate.hpp \
[7abee38]28      ResolvExpr/CastCost.cc \
[5bf3976]29      ResolvExpr/CastCost.hpp \
[7abee38]30      ResolvExpr/CommonType.cc \
[5bf3976]31      ResolvExpr/CommonType.hpp \
[7abee38]32      ResolvExpr/ConversionCost.cc \
[5339a87]33      ResolvExpr/ConversionCost.h \
34      ResolvExpr/Cost.h \
[7abee38]35      ResolvExpr/CurrentObject.cc \
[5339a87]36      ResolvExpr/CurrentObject.h \
[7abee38]37      ResolvExpr/ExplodedActual.cc \
[5339a87]38      ResolvExpr/ExplodedActual.h \
[432ce7a]39      ResolvExpr/ExplodedArg.cpp \
[5339a87]40      ResolvExpr/ExplodedArg.hpp \
[7abee38]41      ResolvExpr/FindOpenVars.cc \
[5339a87]42      ResolvExpr/FindOpenVars.h \
[7abee38]43      ResolvExpr/Occurs.cc \
44      ResolvExpr/PolyCost.cc \
[5bf3976]45      ResolvExpr/PolyCost.hpp \
[7abee38]46      ResolvExpr/PtrsAssignable.cc \
[5bf3976]47      ResolvExpr/PtrsAssignable.hpp \
[7abee38]48      ResolvExpr/PtrsCastable.cc \
[5bf3976]49      ResolvExpr/PtrsCastable.hpp \
[7abee38]50      ResolvExpr/RenameVars.cc \
[5339a87]51      ResolvExpr/RenameVars.h \
[7abee38]52      ResolvExpr/ResolveAssertions.cc \
[5339a87]53      ResolvExpr/ResolveAssertions.h \
[7abee38]54      ResolvExpr/Resolver.cc \
[5339a87]55      ResolvExpr/Resolver.h \
[7abee38]56      ResolvExpr/ResolveTypeof.cc \
[5339a87]57      ResolvExpr/ResolveTypeof.h \
58      ResolvExpr/ResolvMode.h \
[396037d]59      ResolvExpr/SatisfyAssertions.cpp \
[5339a87]60      ResolvExpr/SatisfyAssertions.hpp \
[7abee38]61      ResolvExpr/SpecCost.cc \
[5bf3976]62      ResolvExpr/SpecCost.hpp \
[7abee38]63      ResolvExpr/TypeEnvironment.cc \
[5339a87]64      ResolvExpr/TypeEnvironment.h \
65      ResolvExpr/typeops.h \
66      ResolvExpr/Unify.cc \
67      ResolvExpr/Unify.h \
68      ResolvExpr/WidenMode.h
[7abee38]69
[1622af5]70SRC += $(SRC_RESOLVEXPR) \
71        ResolvExpr/AlternativePrinter.cc \
72        ResolvExpr/AlternativePrinter.h \
73        ResolvExpr/CandidatePrinter.cpp \
74        ResolvExpr/CandidatePrinter.hpp
[5339a87]75
[1622af5]76SRCDEMANGLE += $(SRC_RESOLVEXPR)
Note: See TracBrowser for help on using the repository browser.