home *** CD-ROM | disk | FTP | other *** search
- # MAKEFILE to create Validate with TurboC++ V1.0
- #
- # -ms Small model
- # -f- No floating point code
- # -G Optimize for speed
- # -N- No stack overflow checking
- # -k- Non-standard stack frame
- # -O Optimize jumps
- # -r Use register variables
- # -v- No source debugging info in module
- # -y- Line numbers off
- # -Z Enable register usage optimization
- # -d Merge duplicate strings
- # -X Disable compiler autodependency output
-
- validate.exe: validate.c
- tcc -ms -f- -G -N- -k- -O -r -v- -y- -Z -d -X validate.c