#
#	$Source: /afs/athena.mit.edu/contrib/watchmaker/src/ofiles/RCS/Makefile,v $
#	$Author: epeisach $
#	$Locker:  $
#	$Header: /afs/athena.mit.edu/contrib/watchmaker/src/ofiles/RCS/Makefile,v 1.5 91/01/23 14:21:24 epeisach Exp $
#
CFLAGS= -O -DNFS -DVFS -I./include
DESTDIR=
BINDIR=/mit/watchmaker/`/bin/athena/machtype`bin
MANDIR=/mit/watchmaker/man

all: ofiles

ofiles:	 ofiles.o kutils.o
	cc ${CFLAGS} -o ofiles ofiles.o kutils.o

install: ofiles
	install -c -g kmem -m 2755 ofiles ${DESTDIR}${BINDIR}/ofiles
	install -c -m 444 ofiles.8 ${DESTDIR}${MANDIR}/man8/ofiles.8

rmobjects clobber clean:
	rm -f ofiles *.o *.out *.log core


ofiles.o: ofiles.c ofiles.h
kutils.o: kutils.c ofiles.h
