home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pccts1.zip / ANTLR / MAKEFILE.VMS < prev    next >
Text File  |  1993-09-01  |  1KB  |  43 lines

  1. $! File: MAKE.COM - Makefile for ANTLR 1.10 on VAX/OpenVMS
  2. $!
  3. $! History:
  4. $! ---------
  5. $! 20-Mar-1992  Fred Scholldorf         Hacked together for VAX/VMS.
  6. $! 24-Mar-1992  Fred Scholldorf         LINK against VAXCRTL sharable library.
  7. $! 24-Aug-1993  Fred Scholldorf         Upgrade for ANTLR V1.10.
  8. $!
  9. $ set noon      !Don't stop on errors.
  10. $!
  11. $ if P1 .eqs. "LINK" then goto relink
  12. $!
  13. $ define/nolog pccts_h     "[-.h]"
  14. $ define/nolog support_set "[-.support.set]"
  15. $!
  16. $ delete/nolog *.obj;*  !Get rid of existing .OBJ files.
  17. $!
  18. $ options = "/INCLUDE=(pccts_h,support_set)"
  19. $ CC 'options' antlr
  20. $ CC 'options' scan
  21. $ CC 'options' err
  22. $ CC 'options' bits
  23. $ CC 'options' build
  24. $ CC 'options' fset2
  25. $ CC 'options' fset
  26. $ CC 'options' gen
  27. $ CC 'options' globals
  28. $ CC 'options' hash
  29. $ CC 'options' lex
  30. $ CC 'options' main
  31. $ CC 'options' misc
  32. $ CC 'options' pred
  33. $ CC 'options' dialog
  34. $ CC 'options' [-.support.set]set
  35. $!
  36. $relink:
  37. $ LINK    antlr,scan,err,bits,build,    -
  38.     fset2,fset,gen,globals,hash,    -
  39.     lex,main,misc,pred,dialog,set,    -
  40.     sys$input:/options
  41.     sys$share:vaxcrtl.exe/share
  42. $ EXIT
  43.