source: src/CodeGen/module.mk @ 0589e83

Last change on this file since 0589e83 was 0589e83, checked in by Andrew Beach <ajbeach@…>, 9 months ago

The demangler now uses the compiler's genType. The only difference I can find is that the demangler genType wrote functions ': RET_TYPE' instead of the C style. If this or a different change turns out to be imported it will have to be replicated post-translation.

  • Property mode set to 100644
File size: 1.1 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:26:00 2022
14## Update Count     : 5
15###############################################################################
16
17SRC_CODEGEN = \
18        CodeGen/CodeGenerator.cc \
19        CodeGen/CodeGenerator.h \
20        CodeGen/CodeGeneratorNew.cpp \
21        CodeGen/CodeGeneratorNew.hpp \
22        CodeGen/FixMain2.cc \
23        CodeGen/FixMain.h \
24        CodeGen/GenType.cc \
25        CodeGen/GenType.h \
26        CodeGen/OperatorTable.cc \
27        CodeGen/OperatorTable.h
28
29SRC += $(SRC_CODEGEN) \
30        CodeGen/Generate.cc \
31        CodeGen/Generate.h \
32        CodeGen/FixMain.cc \
33        CodeGen/FixNames.cc \
34        CodeGen/FixNames.h \
35        CodeGen/LinkOnce.cc \
36        CodeGen/LinkOnce.h \
37        CodeGen/Options.h
38
39SRCDEMANGLE += $(SRC_CODEGEN)
Note: See TracBrowser for help on using the repository browser.