home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-11-01 | 405 b | 22 lines |
- !ifdef NDEBUG
- .c.obj :
- bcc -c -P -DNDEBUG -Ox -Z $*.c
- !else
- .c.obj :
- bcc -c -P -w+ -k -N -Od -v $*.c
- !endif
-
- filetest.exe : filetest.obj unixfile.obj stdfile.obj file.obj objects.obj
- tlink -v c0s filetest unixfile stdfile file objects,filetest,,cs
-
- objects.obj : objects.c
-
- file.obj : file.c
-
- stdfile.obj : stdfile.c
-
- unixfile.obj : unixfile.c
-
- filetest.obj : filetest.c
-
-