home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 110 / EnigmaAmiga110CD.iso / indispensabili / utility / apdf / xpdf-0.80 / goo / vms_make.com < prev    next >
Text File  |  1998-11-27  |  694b  |  27 lines

  1. $!========================================================================
  2. $!
  3. $! Goo library compile script for VMS.
  4. $!
  5. $! Copyright 1996 Derek B. Noonburg
  6. $!
  7. $!========================================================================
  8. $!
  9. $ GOO_OBJS = "GString.obj,gmempp.obj,gfile.obj,gmem.obj,parseargs.obj" + -
  10.              ",vms_directory.obj,vms_unix_times.obj"
  11. $ if f$extract(1,3,f$getsyi("Version")) .lts. "7.0"
  12. $  then
  13. $   GOO_OBJS = GOO_OBJS + ",vms_unlink.obj"
  14. $   CCOMP vms_unlink.c
  15. $ endif
  16. $!
  17. $ CXXCOMP GString.cc
  18. $ CXXCOMP gmempp.cc
  19. $ CXXCOMP gfile.cc
  20. $ CCOMP gmem.c
  21. $ CCOMP parseargs.c
  22. $ CCOMP vms_directory.c
  23. $ CCOMP vms_unix_times.c
  24. $!
  25. $ lib/cre libgoo.olb
  26. $ lib libgoo 'GOO_OBJS
  27.