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

编译器/解释器

开发平台:

Others

  1. $! File: MAKE.COM - Makefile for DLG 1.33
  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 PCCTS V1.10.
  8. $! 27-Jan-1998  J.F. Pieronne           Upgrade for DECC
  9. $!
  10. $ set noon      !Don't stop on errors.
  11. $!
  12. $ if P1 .eqs. "LINK" then goto relink
  13. $!
  14. $ define pccts_h "[-.h]"
  15. $ define 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' dlg_a
  21. $ CC 'options' dlg_p
  22. $ CC 'options' err
  23. $ CC 'options' main
  24. $ CC 'options' [-.support.set]set
  25. $ CC 'options' support 
  26. $ CC 'options' output
  27. $ CC 'options' relabel 
  28. $ CC 'options' automata
  29. $!
  30. $relink:
  31. $ LINK  /EXE=dlg.exe    -
  32. dlg_a,dlg_p,err,main,   -
  33. set,support,output,     -
  34. relabel,automata,       -
  35. sys$input:/options
  36. ! sys$share:vaxcrtl.exe/share
  37. $ EXIT