├── .gitignore ├── LICENSE ├── README.md ├── makefile ├── set_environment_variables.sh └── set_environment_variables_permanently.sh /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.Identifier 2 | **/*.swp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBitmap/CTMZ_Toolchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBitmap/CTMZ_Toolchain/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBitmap/CTMZ_Toolchain/HEAD/makefile -------------------------------------------------------------------------------- /set_environment_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBitmap/CTMZ_Toolchain/HEAD/set_environment_variables.sh -------------------------------------------------------------------------------- /set_environment_variables_permanently.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BotBitmap/CTMZ_Toolchain/HEAD/set_environment_variables_permanently.sh --------------------------------------------------------------------------------