home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gawk213s.lzh / GAWK213S / MAKE.BAT < prev    next >
DOS Batch File  |  1993-07-29  |  2KB  |  56 lines

  1. REM Simple brute force command file for building gawk under msdos
  2. REM
  3. REM *** This has only been using MSC 5.1 ***
  4. REM
  5. REM Written by Arnold Robbins, May 1991
  6. REM Based on earlier makefile for dos
  7. REM
  8. REM Copyright (C) 1986, 1988, 1989, 1991 the Free Software Foundation, Inc.
  9. REM 
  10. REM This file is part of GAWK, the GNU implementation of the
  11. REM AWK Progamming Language.
  12. REM 
  13. REM GAWK is free software; you can redistribute it and/or modify
  14. REM it under the terms of the GNU General Public License as published by
  15. REM the Free Software Foundation; either version 1, or (at your option)
  16. REM any later version.
  17. REM 
  18. REM GAWK is distributed in the hope that it will be useful,
  19. REM but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. REM GNU General Public License for more details.
  22. REM 
  23. REM You should have received a copy of the GNU General Public License
  24. REM along with GAWK; see the file COPYING.  If not, write to
  25. REM the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  26. REM
  27. REM    debug flags:    DEBUG=#-DDEBUG #-DFUNC_TRACE -DMEMDEBUG
  28. REM            DEBUGGER= #-Zi
  29. REM
  30. cl -c -AL -Oalt array.c
  31. cl -c -AL -Oalt awktab.c
  32. cl -c -AL -Oalt builtin.c
  33. cl -c -AL -Oalt dfa.c
  34. cl -c -AL -Oalt eval.c
  35. cl -c -AL -Oalt field.c
  36. cl -c -AL -Oalt io.c
  37. cl -c -AL -Oalt iop.c
  38. cl -c -AL -Oalt main.c
  39. cl -c -AL -Oalt missing.c
  40. cl -c -AL -Oalt msg.c
  41. cl -c -AL -Oalt node.c
  42. cl -c -AL -Oalt popen.c
  43. cl -c -AL -Oalt re.c
  44. cl -c -AL -Oalt version.c
  45. REM
  46. REM this kludge necessary because MSC 5.1 compiler bombs with -Oail (where
  47. REM -Ox == "-Oailt -Gs")
  48. REM
  49. REM You can ignore the warnings you will get
  50. cl -c -AL -Ot regex.c
  51. REM
  52. REM    I'm not sure what this is for.  It was commented out
  53. REM     LINKFLAGS= /CO /NOE /NOI /st:0x1800
  54. REM
  55. link @names.lnk,gawk.exe /E /FAR /PAC /NOE /NOI /st:0x1800;
  56.