source: src/Common/module.mk@ fbdfcd8

ADT ast-experimental
Last change on this file since fbdfcd8 was f26421f, checked in by Mugilan Ganesan <mganesan@…>, 3 years ago

Removed CompilerError and UnimplementedError

  • Property mode set to 100644
File size: 1.6 KB
Line 
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##
8## module.mk --
9##
10## Author : Richard C. Bilson
11## Created On : Mon Jun 1 17:49:17 2015
12## Last Modified By : Andrew Beach
13## Last Modified On : Tue May 17 14:27:00 2022
14## Update Count : 5
15###############################################################################
16
17SRC_COMMON = \
18 Common/Assert.cc \
19 Common/CodeLocation.h \
20 Common/CodeLocationTools.hpp \
21 Common/CodeLocationTools.cpp \
22 Common/Debug.h \
23 Common/DeclStats.hpp \
24 Common/DeclStats.cpp \
25 Common/ErrorObjects.h \
26 Common/Eval.cc \
27 Common/Examine.cc \
28 Common/Examine.h \
29 Common/FilterCombos.h \
30 Common/Indenter.h \
31 Common/Indenter.cc \
32 Common/PassVisitor.cc \
33 Common/PassVisitor.h \
34 Common/PassVisitor.impl.h \
35 Common/PassVisitor.proto.h \
36 Common/PersistentMap.h \
37 Common/ResolvProtoDump.hpp \
38 Common/ResolvProtoDump.cpp \
39 Common/ScopedMap.h \
40 Common/SemanticError.cc \
41 Common/SemanticError.h \
42 Common/Stats.h \
43 Common/Stats/Base.h \
44 Common/Stats/Counter.cc \
45 Common/Stats/Counter.h \
46 Common/Stats/Heap.cc \
47 Common/Stats/Heap.h \
48 Common/Stats/ResolveTime.cc \
49 Common/Stats/ResolveTime.h \
50 Common/Stats/Stats.cc \
51 Common/Stats/Time.cc \
52 Common/Stats/Time.h \
53 Common/UniqueName.cc \
54 Common/UniqueName.h \
55 Common/utility.h \
56 Common/VectorMap.h
57
58SRC += $(SRC_COMMON) \
59 Common/DebugMalloc.cc
60
61SRCDEMANGLE += $(SRC_COMMON)
Note: See TracBrowser for help on using the repository browser.