home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / crc / validate / makefile next >
Encoding:
Makefile  |  1991-01-04  |  603 b   |  18 lines

  1. # MAKEFILE to create Validate with TurboC++ V1.0
  2. #
  3. #  -ms       Small model
  4. #  -f-       No floating point code
  5. #  -G        Optimize for speed
  6. #  -N-       No stack overflow checking
  7. #  -k-       Non-standard stack frame
  8. #  -O        Optimize jumps
  9. #  -r        Use register variables
  10. #  -v-       No source debugging info in module
  11. #  -y-       Line numbers off
  12. #  -Z        Enable register usage optimization
  13. #  -d        Merge duplicate strings
  14. #  -X        Disable compiler autodependency output
  15.  
  16. validate.exe: validate.c
  17.     tcc -ms -f- -G -N- -k- -O -r -v- -y- -Z -d -X validate.c
  18.