Fix up batchfile.
Chris Pressey
4 years ago
0 | @echo off | |
0 | 1 | rem -------------------------------------------------------------- |
1 | 2 | rem Batchfile that compiles the bef sources under Borland C++ 3.1. |
2 | 3 | rem Uses "large" memory model for befprof b/c it uses >64K data. |
3 | 4 | rem -------------------------------------------------------------- |
4 | 5 | |
5 | bcc src\bef.c bin\bef.exe | |
6 | bcc -ml src\befprof.c bin\befprof.exe | |
7 | bcc src\bef2c.c bin\bef2c.exe | |
6 | @echo on | |
7 | bcc -ebin\bef.exe src\bef.c | |
8 | bcc -ml -ebin\befprof.exe src\befprof.c | |
9 | bcc -ebin\bef2c.exe src\bef2c.c |