SHELL=/bin/sh
# rcsid = "$Header: Makefile,v 6.0 90/08/29 13:14:17 mayo Exp $"
CADDIR = this_is_set_by_the_parent_Makefile_and_the_findcad_script
FSLEEPER	= fsleeper.o
LIBS 		= ../lib/libmagicutils.a
IFLAGS= -I. -I../include

fsleeper: ${FSLEEPER}
	rm -f fsleeper
	cc `cat ../misc/CFLAGS` `cat ../misc/DFLAGS` ${IFLAGS} ${FSLEEPER} ${LIBS} -o fsleeper

.c.o:
	rm -f $*.o
	${CC} `cat ../misc/CFLAGS` `cat ../misc/DFLAGS` ${IFLAGS} -c $*.c

installcad: install

install: ${CADDIR}/bin/fsleeper

${CADDIR}/bin/fsleeper: fsleeper
	cp fsleeper ${CADDIR}/bin

clean:	
	rm -f ${FSLEEPER} fsleeper

lint:   forceit
	lint ${LINTFLAGS} ${SRCS} ${LINTLIBS} 

forceit:

# Do not put anything after this line!  The rest of this file was produced
# by the program ~cad/src/magic/:depend on Wed Aug 29 13:14:14 PDT 1990.
 
# include file dependencies for "fsleeper.c"
fsleeper.o:	fsleeper.c
 
