source: src/Common/module.mk@ ddcedfe

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since ddcedfe was 57e0289, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Added stats option to print stats per expression in new-ast resolution

  • 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 : Peter A. Buhr
13## Last Modified On : Tue Sep 27 11:06:38 2016
14## Update Count : 4
15###############################################################################
16
17SRC_COMMON = \
18 Common/Assert.cc \
19 Common/CodeLocation.h \
20 Common/CompilerError.h \
21 Common/Debug.h \
22 Common/ErrorObjects.h \
23 Common/Eval.cc \
24 Common/Examine.cc \
25 Common/Examine.h \
26 Common/FilterCombos.h \
27 Common/Indenter.h \
28 Common/PassVisitor.cc \
29 Common/PassVisitor.h \
30 Common/PassVisitor.impl.h \
31 Common/PassVisitor.proto.h \
32 Common/PersistentMap.h \
33 Common/ScopedMap.h \
34 Common/SemanticError.cc \
35 Common/SemanticError.h \
36 Common/Stats.h \
37 Common/Stats/Base.h \
38 Common/Stats/Counter.cc \
39 Common/Stats/Counter.h \
40 Common/Stats/Heap.cc \
41 Common/Stats/Heap.h \
42 Common/Stats/ResolveTime.cc \
43 Common/Stats/ResolveTime.h \
44 Common/Stats/Stats.cc \
45 Common/Stats/Time.cc \
46 Common/Stats/Time.h \
47 Common/UnimplementedError.h \
48 Common/UniqueName.cc \
49 Common/UniqueName.h \
50 Common/utility.h \
51 Common/VectorMap.h
52
53SRC += $(SRC_COMMON) Common/DebugMalloc.cc
54SRCDEMANGLE += $(SRC_COMMON)
Note: See TracBrowser for help on using the repository browser.