#
#	Makefile for BASIC Sample Programs
#
#	Note the "-s" flag specified for the sample programs.
#	If you read the first page of the SUPPLEMENTAL DOCUMENTATION
#	section of the manual (a.k.a. the BASIC Manual Page), you
#	will notice the sentence ... "Other arguments are taken to
#	be loader option aruments."  The "-s" flag is a loader
#	argument, that on most systems, strips the symbol table
#	from the output file, thus saving you disk space.  Unless
#	you are intimately familiar with your machines assembly
#	language, it is not too likely that you would want the
#	symbol table around for debugging purposes.
#
all:	acc address chstr commnd errors files fuzz lprint pipe robots choose shell soma tape tempchain tempchain1
clean:
	-rm -f SpoolFile acc address address.dat chstr chstr.o chstr1.o commnd errors fuzz files junk.dat lprint pipe robots shell choose soma tape tempchain tempchain1
acc:	acc.b
	basic -v -L -O -s -o acc acc.b
address:	address.b
	basic -v -L -O -s -o address address.b
chstr:	chstr.b chstr1.b
	basic -v -L -O -c chstr1.b
	basic -v -L -O -s -o chstr chstr.b chstr1.o
commnd:	commnd.b
	basic -v -L -O -s -o commnd commnd.b
errors:	errors.b
	basic -v -L -O -s -o errors errors.b
files:	files.b
	basic -v -L -O -s -o files files.b
fuzz:	files.b
	basic -v -L -O -s -o fuzz fuzz.b
lprint:	lprint.b
	basic -v -L -O -s -o lprint lprint.b
pipe:	pipe.b
	basic -v -L -O -s -o pipe pipe.b
robots:	robots.b
	basic -v -L -O -s -o robots robots.b
choose:	choose.b
	basic -v -L -O -s -o choose choose.b
shell:	shell.b
	basic -v -L -O -s -o shell shell.b
soma:	soma.b
	basic -v -L -O -s -o soma soma.b
tape:	tape.b
	basic -v -L -O -s -o tape tape.b
tempchain:	tempchain.b tempchain1.b
	basic -v -O -s -o tempchain tempchain.b
	basic -v -O -s -o tempchain1 tempchain1.b
