source: src/ResolvExpr/module.mk

Last change on this file was 4a89b52, checked in by Andrew Beach <ajbeach@…>, 5 months ago

Renamed ResolvMode? to ResolveMode?. This is less consistent with the namespace, but is more consistent with almost everything else.

  • Property mode set to 100644
File size: 2.1 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 \
[99d4584]20      ResolvExpr/Candidate.cpp \
21      ResolvExpr/CandidateFinder.cpp \
[5339a87]22      ResolvExpr/CandidateFinder.hpp \
23      ResolvExpr/Candidate.hpp \
[7abee38]24      ResolvExpr/CastCost.cc \
[5bf3976]25      ResolvExpr/CastCost.hpp \
[7abee38]26      ResolvExpr/CommonType.cc \
[5bf3976]27      ResolvExpr/CommonType.hpp \
[7abee38]28      ResolvExpr/ConversionCost.cc \
[5339a87]29      ResolvExpr/ConversionCost.h \
30      ResolvExpr/Cost.h \
[7abee38]31      ResolvExpr/CurrentObject.cc \
[5339a87]32      ResolvExpr/CurrentObject.h \
[432ce7a]33      ResolvExpr/ExplodedArg.cpp \
[5339a87]34      ResolvExpr/ExplodedArg.hpp \
[7abee38]35      ResolvExpr/FindOpenVars.cc \
[5339a87]36      ResolvExpr/FindOpenVars.h \
[7abee38]37      ResolvExpr/PolyCost.cc \
[5bf3976]38      ResolvExpr/PolyCost.hpp \
[7abee38]39      ResolvExpr/PtrsAssignable.cc \
[5bf3976]40      ResolvExpr/PtrsAssignable.hpp \
[7abee38]41      ResolvExpr/PtrsCastable.cc \
[5bf3976]42      ResolvExpr/PtrsCastable.hpp \
[7abee38]43      ResolvExpr/RenameVars.cc \
[5339a87]44      ResolvExpr/RenameVars.h \
[7abee38]45      ResolvExpr/Resolver.cc \
[5339a87]46      ResolvExpr/Resolver.h \
[7abee38]47      ResolvExpr/ResolveTypeof.cc \
[5339a87]48      ResolvExpr/ResolveTypeof.h \
[4a89b52]49      ResolvExpr/ResolveMode.hpp \
[396037d]50      ResolvExpr/SatisfyAssertions.cpp \
[5339a87]51      ResolvExpr/SatisfyAssertions.hpp \
[7abee38]52      ResolvExpr/SpecCost.cc \
[5bf3976]53      ResolvExpr/SpecCost.hpp \
[5339a87]54      ResolvExpr/typeops.h \
55      ResolvExpr/Unify.cc \
56      ResolvExpr/Unify.h \
57      ResolvExpr/WidenMode.h
[7abee38]58
[1622af5]59SRC += $(SRC_RESOLVEXPR) \
60        ResolvExpr/CandidatePrinter.cpp \
[d3652df]61        ResolvExpr/CandidatePrinter.hpp \
62        ResolvExpr/EraseWith.cpp \
63        ResolvExpr/EraseWith.hpp
[5339a87]64
[1622af5]65SRCDEMANGLE += $(SRC_RESOLVEXPR)
Note: See TracBrowser for help on using the repository browser.