Mercurial > hg > octave-lyh
view doc/Makefile.in @ 6537:062bade36bf7
[project @ 2007-04-18 16:40:25 by jwe]
author | jwe |
---|---|
date | Wed, 18 Apr 2007 16:40:25 +0000 |
parents | a84de7048629 |
children | e4ef75fe0bf2 |
line wrap: on
line source
# # Makefile for octave's doc directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = .. srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = DISTFILES = Makefile.in ChangeLog conf.texi.in conf.texi texinfo.tex SUBDIRS = faq interpreter liboctave refcard DISTSUBDIRS = $(SUBDIRS) all: conf.texi $(SUBDIRS) .PHONY: all conf.texi: conf.texi.in $(TOPDIR)/Makeconf @$(do-subst-texinfo-vals) ../BUGS ../INSTALL.OCTAVE: $(MAKE) -C interpreter ../$@ .PHONY: ../BUGS ../INSTALL.OCTAVE $(SUBDIRS): $(MAKE) -C $@ all .PHONY: $(SUBDIRS) install install-strip uninstall clean mostlyclean distclean maintainer-clean:: @$(subdir-for-command) .PHONY: install install-strip uninstall .PHONY: clean mostlyclean distclean maintainer-clean tags TAGS:: $(SOURCES) $(SUBDIR_FOR_COMMAND) tags:: ctags $(SOURCES) TAGS:: $(SOURCES) etags $(SOURCES) distclean:: rm -f Makefile maintainer-clean:: rm -f tags TAGS Makefile dist: conf.texi ln $(DISTFILES) ../`cat ../.fname`/doc for dir in $(DISTSUBDIRS); do mkdir ../`cat ../.fname`/doc/$$dir; $(MAKE) -C $$dir $@; done .PHONY: dist