├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.win ├── NOTICE ├── README.md ├── compile-chez-program.ss ├── console_main.c ├── custom-boot.ss ├── embed_target.c ├── embed_target_windows.c ├── gen-config.ss ├── gui_main.c ├── make-boot-file.ss ├── make.cmd ├── setup.c ├── setup.h ├── stubs.c └── utils.ss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/Makefile.win -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/README.md -------------------------------------------------------------------------------- /compile-chez-program.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/compile-chez-program.ss -------------------------------------------------------------------------------- /console_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/console_main.c -------------------------------------------------------------------------------- /custom-boot.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/custom-boot.ss -------------------------------------------------------------------------------- /embed_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/embed_target.c -------------------------------------------------------------------------------- /embed_target_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/embed_target_windows.c -------------------------------------------------------------------------------- /gen-config.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/gen-config.ss -------------------------------------------------------------------------------- /gui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/gui_main.c -------------------------------------------------------------------------------- /make-boot-file.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/make-boot-file.ss -------------------------------------------------------------------------------- /make.cmd: -------------------------------------------------------------------------------- 1 | 2 | @echo off 3 | 4 | nmake /NOLOGO /F Makefile.win %* 5 | -------------------------------------------------------------------------------- /setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/setup.c -------------------------------------------------------------------------------- /setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/setup.h -------------------------------------------------------------------------------- /stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/stubs.c -------------------------------------------------------------------------------- /utils.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwatt/chez-exe/HEAD/utils.ss --------------------------------------------------------------------------------