#
# Makefile for SCSI Tape Streamer I/O functions (16 bit library)
#

all:
	gcc-cpp -P -D__MSHORT__ tapebind.cpp tapebind.s
	gcc-as -o tapebind.o tapebind.s

	gcc -O -mshort -I../include -c getcook.c
	gcc -O -mshort -I../include -c error.c

	gcc-ar rv tape16.olb tapebind.o getcook.o error.o
