
TOPDIR =..
include $(TOPDIR)/Makeconf
include $(TOPDIR)/Makerule

INSTALL_FILES = kim.1

all:
	@echo

clean:
	$(RM) *~ 

install:
	@echo Install doc: $(docdir)
	@install -d $(mandir)
	@for file in $(INSTALL_FILES); do \
                test -f $(mandir)/$$file \
                || $(INSTALL) -m $(TEXT_MODE) $$file $(mandir); \
	done

uninstall:
	@echo Unnstall doc: $(docdir)
	@for file in $(INSTALL_FILES); do \
                $(RM) $(mandir)/$$file ; \
	done
