home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / spell / makefile < prev    next >
Encoding:
Makefile  |  1979-01-10  |  645 b   |  30 lines

  1. all:    spell hlist hlista hlistb hstop spellin
  2.     :
  3.  
  4. cp:    all
  5.     cp spell /usr/lib
  6.     cp hlista /usr/dict
  7.     cp hlistb /usr/dict
  8.     cp hstop /usr/dict
  9.     rm spell hlista hlistb hstop hlist
  10.  
  11. cmp:    spell
  12.     cmp spell /usr/lib/spell
  13.     rm spell
  14.  
  15. spell: spell.c
  16.     cc -i -s -O spell.c -o spell
  17. spellin: spellin.c
  18.     cc -i -O -s spellin.c -o spellin
  19. spellout: spellout.c
  20.     cc -i -O -s spellout.c -o spellout
  21.  
  22. hlist: /usr/dict/words spellin
  23.     spellin </usr/dict/words >hlist
  24. hlista: american local hlist spellin
  25.     (cat american local)|spellin hlist >hlista
  26. hlistb: british local hlist spellin
  27.     (cat british local)|spellin hlist >hlistb
  28. hstop: stop spellin
  29.     spellin <stop >hstop
  30.