include include/conf.mk

SUBDIRS= libfax fax faxreceive faxsend faxmail coversheet \
		 scripts ps man faxspooler

all::

world: clean depend all install

tags: 
	etags libfax/*.c faxspooler/*.c faxreceive/*.c faxsend/*.c faxmail/*.c \
coversheet/*.c libfax/*.h faxspooler/*.h faxreceive/*.h faxsend/*.h faxmail/*.h \
coversheet/*.h 

install::
	@if [ ! -d $(LIBDIR) ]; then \
		mkdir $(LIBDIR) ; \
	fi

all install clean depend::
	@for i in $(SUBDIRS) ; do \
		echo "making $@ in $$i with $(MAKE)..." ; \
		( cd $$i; $(MAKE) $@ ) ; \
	done
