# doc/Makefile.in -*- Makefile -*- @MCOMMON@ srcdir = @srcdir@ VPATH = @srcdir@ .PATH: @srcdir@ basedir = .. thisdir = doc first_rule: all dummy: #------------------------------------------------------------------------- all: SEDREPLACE = -e 's%@@RXVT_VERSION@@%$(VERSION)%g;'\ -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;'\ -e 's%@@RXVT_DATE@@%$(DATE)%g;' %.tbl: %.pod ./podtbl <$< >$@ %.1.man.in: %.1.tbl pod2man -n rxvt -r"$(VERSION)" -q\" -s1 -c "RXVT-UNICODE" <$< >$@ %.7.man.in: %.7.tbl pod2man -n rxvt -r"$(VERSION)" -q\" -s7 -c "RXVT-UNICODE" <$< >$@ %.html: %.tbl $(SED) $(SEDREPLACE) <$< | pod2html >$@ %.txt: %.tbl $(SED) $(SEDREPLACE) <$< | pod2text >$@ ../README.configure: rxvt.7.tbl $(SED) $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@ ../README.FAQ: rxvt.7.tbl $(SED) $(SEDREPLACE) <$< | podselect -section "FREQUENTLY ASKED QUESTIONS" | pod2text >$@ tags allbin: alldoc: rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in \ rxvt.1.txt rxvt.7.txt rxvtc.1.txt rxvtd.1.txt \ rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html \ ../README.configure ../README.FAQ infocmp -C rxvt-unicode >etc/rxvt-unicode.termcap clean: $(RMF) *~ realclean: clean $(RMF) tags ../README.configure ../README.FAQ $(RMF) rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in $(RMF) rxvt.1.man rxvt.7.man rxvtc.1.man rxvtd.1.man $(RMF) rxvt.1.txt rxvt.7.txt rxvtc.1.txt rxvtd.1.txt $(RMF) rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html cleandir: realclean distclean: install: $(INSTALL) -d $(DESTDIR)$(man1dir) $(INSTALL) -d $(DESTDIR)$(man7dir) $(SED) $(SEDREPLACE) < rxvt.1.man.in >rxvt.1.man $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext) $(SED) $(SEDREPLACE) < rxvt.7.man.in >rxvt.7.man $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext) $(SED) $(SEDREPLACE) < rxvtc.1.man.in >rxvtc.1.man $(INSTALL_DATA) rxvtc.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext) $(SED) $(SEDREPLACE) < rxvtd.1.man.in >rxvtd.1.man $(INSTALL_DATA) rxvtd.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext) if test -x "@TIC@"; then if test -n "@TIC@"; then @TIC@ etc/rxvt-unicode.terminfo; fi; fi uninstall: -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) ) distdepend: alldoc # ------------------------------------------------------------------------ # DO NOT DELETE: ugly dependency list follows