include ../include/conf.mk

SRCS= fax.o

all: fax

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

install: all
	install fax $(BINDIR)
	-chown daemon $(BINDIR)/fax
	-chmod u+s $(BINDIR)/fax

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

depend:
	makedepend $(SRCS)

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