#
# Makefile for WebStone, version 1.0b3
# 	Last modified 8/31/95 by mblakele@engr.sgi.com
#

SRCDIR=./src
BINDIR=./bin
CC=cc

all: 
	(cd $(SRCDIR); make all; )

install: all
	(cd $(SRCDIR); make install; )

clean: 
	(cd $(SRCDIR); make clean; )

clobber: 
	(cd $(SRCDIR); make clobber; )
#
