# $Id: Makefile,v 1.1 1996/03/20 20:49:11 paul Exp $
CC=mcc
CFLAGS=  -D_MINIX -D_POSIX_SOURCE
AS=mcc

all: sunread 

sunread: sunread.o SunOS.o
	$(CC) -o sunread -S 4kw sunread.o SunOS.o

SunOS.o: SunOS.s
	$(AS) -c SunOS.s

clean:
	rm -f *.o core sunread
