makefile.VMS
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. $! File: MAKE.COM - Makefile for ANTLR 1.33 on OpenVMS, DECC
  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. $! 27-Jan-1998  J.F. Pieronne           Upgrade for ANTLR V1.33, DECC
  9. $!
  10. $ set noon      !Don't stop on errors.
  11. $!
  12. $ if P1 .eqs. "LINK" then goto relink
  13. $!
  14. $ define/nolog pccts_h     "[-.h]"
  15. $ define/nolog support_set "[-.support.set]"
  16. $!
  17. $ delete/nolog *.obj;*  !Get rid of existing .OBJ files.
  18. $!
  19. $ options = "/INCLUDE=(pccts_h,support_set)/define=(__STDC__,USER_ZZSYN)"
  20. $ CC 'options' antlr
  21. $ CC 'options' scan
  22. $ CC 'options' err
  23. $ CC 'options' bits
  24. $ CC 'options' build
  25. $ CC 'options' fset2
  26. $ CC 'options' fset
  27. $ CC 'options' gen
  28. $ CC 'options' globals
  29. $ CC 'options' hash
  30. $ CC 'options' lex
  31. $ CC 'options' main
  32. $ CC 'options' misc
  33. $ CC 'options' pred
  34. $ CC 'options' egman
  35. $ CC 'options' mrhoist
  36. $ CC 'options' fcache
  37. $ CC 'options' [-.support.set]set
  38. $!
  39. $relink:
  40. $ LINK antlr,scan,err,bits,build, -
  41. fset2,fset,gen,globals,hash, -
  42. lex,main,misc,pred,egman,mrhoist,fcache,set, -
  43. sys$input:/options
  44. ! sys$share:vaxcrtl.exe/share
  45. $ EXIT