# $Header: Makefile,v 1.1 88/01/15 12:16:52 simpson Rel $
# $Log:	Makefile,v $
#Revision 1.1  88/01/15  12:16:52  simpson
#initial release
#
#Revision 0.1  87/12/11  17:20:06  simpson
#beta test
#
INCLUDE=/usr/include/local
LIB=/usr/local/lib

all: libprofile.a

# This system include file is needed right away
configure: 
	install -c -m 644 profile.h $(INCLUDE)

libprofile.a: boolean.o free.o has.o read.o space.o write.o
	ar cr libprofile.a boolean.o free.o has.o read.o space.o write.o
	ranlib libprofile.a

install:
	install -c -m 644 profile.h $(INCLUDE)
	install -m 644 libprofile.a $(LIB)

clean:
	-rm *.o libprofile.a

boolean.o free.o has.o read.o space.o write.o: profile.h