home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / VIRUS / PVALIDAT.ZIP / MAKEFILE next >
Encoding:
Text File  |  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.