include ../include/conf.mk

SRCS= coversheet.c

all: coversheet

coversheet: $(OBJS)
	cc -o coversheet $(OBJS)

install: all
	install coversheet $(LIBDIR)

clean:
	$(RM) coversheet *.o core *~

depend:
	makedepend $(SRCS)

# DO NOT DELETE THIS LINE -- make depend depends on it.

coversheet.o: /usr/include/stdio.h /usr/include/unistd.h /usr/include/errno.h
coversheet.o: /usr/include/sys/errno.h defines.h ../include/conf.h
