home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume4 / se / part1 / m4munge < prev    next >
Text File  |  1986-11-30  |  548b  |  20 lines

  1. #! /bin/sh
  2. # m4munge --- take what the 'where' command produces, and change it for m4
  3.  
  4. for i in $*
  5. do
  6.     case $i in
  7.     -DUSG)        echo 'define(USG,YES)'        ;;
  8.     -UUSG)        echo 'define(USG,NO)'        ;;
  9.     -DBSD)        echo 'define(BSD,YES)'        ;;
  10.     -UBSD)        echo 'define(BSD,NO)'        ;;
  11.     -DBSD4_2)    echo 'define(BSD4_2,YES)'    ;;
  12.     -UBSD4_2)    echo 'define(BSD4_2,NO)'    ;;
  13.     -DGITVAX)    echo 'define(GITVAX,YES)'    ;;
  14.     -UGITVAX)    echo 'define(GITVAX,NO)'    ;;
  15.     -DS5R2)        echo 'define(S5R2,YES)'        ;;
  16.     -US5R2)        echo 'define(S5R2,NO)'        ;;
  17.     -DHARD_TERMS)    echo 'define(HARD_TERMS,YES)'    ;;
  18.     esac
  19. done
  20.