# include Husky-Makefile-Config ifeq ($(DEBIAN), 1) # Every Debian-Source-Paket has one included. include /usr/share/husky/huskymak.cfg else include ../../huskymak.cfg endif all: html info ifdef HTMLDIR html: fidoconfig.html else html: @echo endif ifdef DVIDIR dvi: fidoconfig.dvi else dvi: @echo endif ifdef INFODIR info: fidoconfig.info else info: @echo endif fidoconfig.html: fidoconfig.texi proposal.texi export LC_ALL=C; \ makeinfo --force --html --no-split fidoconfig.texi fidoconfig.dvi: fidoconfig.texi proposal.texi texi2dvi fidoconfig.texi fidoconfig.info: fidoconfig.texi proposal.texi makeinfo --force --no-split fidoconfig.texi fidoconf.txt: makeinfo --force --no-split fidoconfig.texi >fidoconf.txt clean: -$(RM) $(RMOPT) fidoconfig.fns -$(RM) $(RMOPT) fidoconfig.aux -$(RM) $(RMOPT) fidoconfig.toc -$(RM) $(RMOPT) fidoconfig.cp -$(RM) $(RMOPT) fidoconfig.fn -$(RM) $(RMOPT) fidoconfig.vr -$(RM) $(RMOPT) fidoconfig.kr -$(RM) $(RMOPT) fidoconfig.ke -$(RM) $(RMOPT) fidoconfig.tp -$(RM) $(RMOPT) fidoconfig.kes -$(RM) $(RMOPT) fidoconfig.krs -$(RM) $(RMOPT) fidoconfig.ky -$(RM) $(RMOPT) fidoconfig.pg -$(RM) $(RMOPT) fidoconfig.cps -$(RM) $(RMOPT) fidoconfig.log -$(RM) $(RMOPT) *~ distclean: clean -$(RM) $(RMOPT) fidoconfig.dvi -$(RM) $(RMOPT) fidoconfig.inf -$(RM) $(RMOPT) fidoconfig*html -$(RM) $(RMOPT) fidoconfig.ps -$(RM) $(RMOPT) fidoconfig.doc -$(RM) $(RMOPT) fidoconfig.info* install: info html @echo . ifdef INFODIR -$(MKDIR) $(MKDIROPT) $(INFODIR) $(INSTALL) $(IMOPT) fidoconfig.info $(INFODIR) -install-info --info-dir=$(INFODIR) $(INFODIR)$(DIRSEP)fidoconfig.info endif ifdef HTMLDIR -$(MKDIR) $(MKDIROPT) $(HTMLDIR) $(INSTALL) $(IMOPT) fidoconfig*html $(HTMLDIR) endif uninstall: -install-info --remove --info-dir=$(INFODIR) $(INFODIR)$(DIRSEP)fidoconfig.info -$(RM) $(RMOPT) $(INFODIR)$(DIRSEP)fidoconfig.info -$(RM) $(RMOPT) $(HTMLDIR)$(DIRSEP)fidoconfig*html -$(RM) $(RMOPT) $(DVIDIR)$(DIRSEP)fidoconfig.dvi