Mercurial > hg > octave-nkf
view doc/Makefile.in @ 5916:22e4b22f07dc
Added tag ss-2-9-7 for changeset b2e1be30c8e9
author | jwe@segfault.lan |
---|---|
date | Fri, 01 Feb 2008 22:20:06 -0500 |
parents | dec8dd15a574 |
children | 61091f4af6e4 |
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