diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-07 12:17:28 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-07 12:21:39 +0100 |
| commit | 282b4694b7199fe4905761965bdf5ddfdeefbf28 (patch) | |
| tree | 7e399b877698e8f09f500fc07fc46dc4df7b0a81 /CompilerDriver/makefile | |
| parent | 3f62373bd7903836f51869a313033f401ee24261 (diff) | |
compilers: introducing bccl, Binary Compatible Computer Language.
masm: fix add,dec and some issues regarding labels.
mpcc: is now a BCCL/C++ compiler.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'CompilerDriver/makefile')
| -rw-r--r-- | CompilerDriver/makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/CompilerDriver/makefile b/CompilerDriver/makefile index 740be21..db59ff2 100644 --- a/CompilerDriver/makefile +++ b/CompilerDriver/makefile @@ -19,15 +19,15 @@ PP_OUTPUT=bin/cpp CC2_OUTPUT=bin/cppfront CC2_SRC=cc2/source/cppfront.cpp -CC_SRC=ccplus.cc ../CompilerKit/StdKit/*.cc ../CompilerKit/AsmKit/*.cc -CC_OUTPUT=bin/ccplus - -CC_SRC=cc.cc ../CompilerKit/StdKit/*.cc ../CompilerKit/AsmKit/*.cc -CC_OUTPUT=bin/cc +# BC Compiler +CC_SRC=bccl.cc ../CompilerKit/StdKit/*.cc ../CompilerKit/AsmKit/*.cc +CC_OUTPUT=bin/bccl +# C++ Compiler CXX_SRC=ccplus.cc ../CompilerKit/StdKit/*.cc ../CompilerKit/AsmKit/*.cc CXX_OUTPUT=bin/ccplus +# MP-UX Assembly MASM_SRC=masm.cc ../CompilerKit/StdKit/*.cc ../CompilerKit/AsmKit/*.cc MASM_OUTPUT=bin/masm |
