include ../Makefile.defs

DOCS = BLURB CREDITS INSTALL TODO WARNING
MAN5 = idsad.conf.5
MAN3 = idsa_close.3 idsa_open.3 idsa_scan.3 idsa_set.3 idsa_types.3
MAN8 = idsad.8 idsasyslogd.8 idsarlogd.8 idsatcplogd.8 idsatcpd.8 idsaguile.8

all: 

install: 
	@$(INSTALL) -d $(MANDIR)/{man3,man5,man8}
	@$(INSTALL) $(MAN3) $(MANDIR)/man3
	@$(INSTALL) $(MAN5) $(MANDIR)/man5
	@$(INSTALL) $(MAN8) $(MANDIR)/man8

checkpoint: indent clean
	$(CI) -l $(DOCS) $(MAN3) $(MAN5) $(MAN8)

indent:

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

reallyclean: clean
