lkundrak / rpms / sendmail

Forked from rpms/sendmail 4 years ago
Clone
cvsdist 98c3f09
# These could be used by sendmail, but are not part of the default install.
cvsdist 98c3f09
# To use them you will have to generate your own sendmail.cf with
cvsdist 98c3f09
#  FEATURE('whatever')
cvsdist 98c3f09
#
cvsdist 98c3f09
POSSIBLE += $(shell test -f bitdomain     && echo bitdomain.db)
cvsdist 98c3f09
POSSIBLE += $(shell test -f uudomain      && echo uudomain.db)
cvsdist 98c3f09
POSSIBLE += $(shell test -f genericstable && echo genericstable.db)
cvsdist 98c3f09
POSSIBLE += $(shell test -f userdb	  && echo userdb.db)
cvsdist 98c3f09
cvsdist 98c3f09
cvsdist 98c3f09
all: ${POSSIBLE} virtusertable.db access.db domaintable.db mailertable.db
cvsdist 98c3f09
cvsdist 98c3f09
userdb.db : userdb
cvsdist 98c3f09
	@makemap btree $@ < $<
cvsdist 98c3f09
cvsdist 98c3f09
%.db : %
cvsdist 98c3f09
	@makemap hash $@ < $<
cvsdist 98c3f09
cvsdist 98c3f09
clean:
cvsdist 98c3f09
	rm -f *.db *~
cvsdist 98c3f09