From: Tom London Date: Tue, 23 Jan 1979 10:11:29 +0000 (-0500) Subject: Bell 32V development X-Git-Tag: Bell-32V~301 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/7234316b296660ff09c0f6c9f1de29b3f74cb07d Bell 32V development Work on file usr/src/cmd/spell/Makefile Co-Authored-By: John Reiser Synthesized-from: 32v --- diff --git a/usr/src/cmd/spell/Makefile b/usr/src/cmd/spell/Makefile new file mode 100644 index 0000000000..8ef90733d5 --- /dev/null +++ b/usr/src/cmd/spell/Makefile @@ -0,0 +1,27 @@ +all: spell hlist hlista hlistb hstop spellin + +install: all + install -s spell $(DESTDIR)/usr/lib + install -c hlista $(DESTDIR)/usr/dict + install -c hlistb $(DESTDIR)/usr/dict + install -c hstop $(DESTDIR)/usr/dict + install -c spell.sh $(DESTDIR)/usr/bin/spell + +clean: + rm -f spell spellin hlista hlistb hlist hstop + +spell: spell.c + cc -s -O spell.c -o spell +spellin: spellin.c + cc -O -s spellin.c -o spellin +spellout: spellout.c + cc -O -s spellout.c -o spellout + +hlist: /usr/dict/words spellin + spellin hlist +hlista: american local hlist spellin + (cat american local)|spellin hlist >hlista +hlistb: british local hlist spellin + (cat british local)|spellin hlist >hlistb +hstop: stop spellin + spellin hstop