#
#  Makefile for us
#
#  steve belczyk  08/93
#
CFLAGS=-D__UNIX__
#
#  Use this for System V
#CFLAGS=-D__UNIX__ -DUSG
CC=cc
#
#  Use this for SGI:
#CFLAGS=-cckr -D__UNIX__ -DUSG
#

us:	us.c us.h
	$(CC) $(CFLAGS) -o us us.c

clean:
	rm -f *.o us

tar:
	tar cvf us.tar README Makefile us.c us.h us.exe us.mak
	compress -v us.tar
