source: src/Validate/module.mk@ c536f9d

Last change on this file since c536f9d was 82a5ea2, checked in by Andrew Beach <ajbeach@…>, 13 months ago

Added checks for (and a test to check the checks) assertions we will not be able to adapt. Using an adapted version of Mike's error message.

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[fd2debf]1######################### -*- Mode: Makefile-Gmake -*- ########################
2##
3## Cforall Version 1.0.0 Copyright (C) 2018 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 : Rob Schluntz
11## Created On : Fri Jul 27 10:10:10 2018
[9939dc3]12## Last Modified By : Andrew Beach
13## Last Modified On : Tue May 17 14:59:00 2022
14## Update Count : 3
[fd2debf]15###############################################################################
16
[ce36b55]17SRC_VALIDATE = \
[c778ef1]18 Validate/FindSpecialDecls.hpp
[9939dc3]19
20SRC += $(SRC_VALIDATE) \
[a488783]21 Validate/Autogen.cpp \
22 Validate/Autogen.hpp \
[82a5ea2]23 Validate/CheckAssertions.cpp \
24 Validate/CheckAssertions.hpp \
[2cf3b87]25 Validate/CompoundLiteral.cpp \
26 Validate/CompoundLiteral.hpp \
[298fe57]27 Validate/EliminateTypedef.cpp \
28 Validate/EliminateTypedef.hpp \
[1931bb01]29 Validate/EnumAndPointerDecay.cpp \
30 Validate/EnumAndPointerDecay.hpp \
[83fd57d]31 Validate/FindSpecialDecls.cpp \
[298fe57]32 Validate/FixQualifiedTypes.cpp \
33 Validate/FixQualifiedTypes.hpp \
[1931bb01]34 Validate/FixReturnTypes.cpp \
35 Validate/FixReturnTypes.hpp \
[9490621]36 Validate/ForallPointerDecay.cpp \
37 Validate/ForallPointerDecay.hpp \
[4ec9513]38 Validate/GenericParameter.cpp \
39 Validate/GenericParameter.hpp \
[298fe57]40 Validate/HoistStruct.cpp \
41 Validate/HoistStruct.hpp \
[1931bb01]42 Validate/HoistTypeDecls.cpp \
43 Validate/HoistTypeDecls.hpp \
[c778ef1]44 Validate/ImplementEnumFunc.cpp \
45 Validate/ImplementEnumFunc.hpp \
[ce36b55]46 Validate/InitializerLength.cpp \
47 Validate/InitializerLength.hpp \
48 Validate/LabelAddressFixer.cpp \
49 Validate/LabelAddressFixer.hpp \
[37b3151]50 Validate/LinkInstanceTypes.cpp \
51 Validate/LinkInstanceTypes.hpp \
[298fe57]52 Validate/NoIdSymbolTable.hpp \
[1931bb01]53 Validate/ReplaceTypedef.cpp \
54 Validate/ReplaceTypedef.hpp \
[4ec9513]55 Validate/ReturnCheck.cpp \
[1931bb01]56 Validate/ReturnCheck.hpp \
57 Validate/VerifyCtorDtorAssign.cpp \
[c778ef1]58 Validate/VerifyCtorDtorAssign.hpp
[ce36b55]59
60SRCDEMANGLE += $(SRC_VALIDATE)
Note: See TracBrowser for help on using the repository browser.