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 : Henry Xue
|
---|
13 | ## Last Modified On : Tue Jul 20 04:10:50 2021
|
---|
14 | ## Update Count : 5
|
---|
15 | ###############################################################################
|
---|
16 |
|
---|
17 | SRC_CONTROLSTRUCT = \
|
---|
18 | ControlStruct/ExceptDecl.cc \
|
---|
19 | ControlStruct/ExceptDecl.h \
|
---|
20 | ControlStruct/FixLabels.cpp \
|
---|
21 | ControlStruct/FixLabels.hpp \
|
---|
22 | ControlStruct/ForExprMutator.cc \
|
---|
23 | ControlStruct/ForExprMutator.h \
|
---|
24 | ControlStruct/HoistControlDecls.cpp \
|
---|
25 | ControlStruct/HoistControlDecls.hpp \
|
---|
26 | ControlStruct/LabelFixer.cc \
|
---|
27 | ControlStruct/LabelFixer.h \
|
---|
28 | ControlStruct/LabelGenerator.cc \
|
---|
29 | ControlStruct/LabelGenerator.h \
|
---|
30 | ControlStruct/MLEMutator.cc \
|
---|
31 | ControlStruct/MLEMutator.h \
|
---|
32 | ControlStruct/MultiLevelExit.cpp \
|
---|
33 | ControlStruct/MultiLevelExit.hpp \
|
---|
34 | ControlStruct/Mutate.cc \
|
---|
35 | ControlStruct/Mutate.h
|
---|
36 |
|
---|
37 | SRC += $(SRC_CONTROLSTRUCT) \
|
---|
38 | ControlStruct/ExceptTranslateNew.cpp \
|
---|
39 | ControlStruct/ExceptTranslate.cc \
|
---|
40 | ControlStruct/ExceptTranslate.h
|
---|
41 |
|
---|
42 | SRCDEMANGLE += $(SRC_CONTROLSTRUCT)
|
---|
43 |
|
---|