Rev 19999 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
## ${R_HOME}/doc/html/MakefileVPATH = @srcdir@srcdir = @srcdir@top_srcdir = @top_srcdir@top_builddir = ../..subdir = doc/htmlinclude $(top_builddir)/Makeconfdistdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)## <FIXME>## Remove function.html eventually ...INSTFILES = \R.css \left.jpg logo.jpg logosm.jpg right.jpg up.jpg \about.html \faq.html \function.html \packages-head.html \resources.html \template.html \thanks.html## </FIXME>DISTFILES = Makefile.in $(INSTFILES) index-default.html R-admin.htmlSUBDIRS = searchOBJECTS = index.html## <FIXME>## build-help really should not create packages.html in *this* directory.CLEANFILES = packages.html packages-foot.html $(OBJECTS)## </FIXME>DISTCLEANFILES = Makefileall: Makefile RMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status@cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@R: Makefile $(OBJECTS)@if test "$(BUILDDIR_IS_SRCDIR)" = no ; then \$(MAKE) rhome=$(top_builddir) install-sources; \fi@for d in $(SUBDIRS); do \(cd $${d} && $(MAKE) $@) || exit 1; \doneindex.html: FORCE@$(PERL) $(top_srcdir)/tools/linkcheck.pl \$(srcdir)/index-default.html > $@ || \$(INSTALL_DATA) $(srcdir)/index-default.html $@FORCE:install: install-message installdirs install-sources@for f in $(OBJECTS); do \$(INSTALL_DATA) $${f} $(rhome)/$(subdir); \done@for d in $(SUBDIRS); do \(cd $${d} && $(MAKE) $@) || exit 1; \doneinstalldirs:@$(MKINSTALLDIRS) $(rhome)/$(subdir)install-message:@echo "installing $(subdir) ..."install-sources:@for f in $(INSTFILES); do \$(INSTALL_DATA) $(srcdir)/$${f} $(rhome)/$(subdir); \doneinstall-strip: installuninstall:@echo "uninstalling $(subdir) ..."@for d in $(SUBDIRS); do \(cd $${d} && $(MAKE) $@); \done@for f in $(CLEANFILES) $(INSTFILES) $(OBJECTS); do \rm -f $(rhome)/$(subdir)/$${f}; \done@rmdir $(rhome)/$(subdir) 2>/dev/null \|| echo " subdir $(subdir) not removed"mostlyclean:clean:@for d in $(SUBDIRS); do \(cd $${d} && $(MAKE) $@); \done@if test "$(BUILDDIR_IS_SRCDIR)" = no ; then \rm -f $(INSTFILES); \fi-@test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)distclean: clean@for d in $(SUBDIRS); do \(cd $${d} && $(MAKE) $@); \done-@test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)maintainer-clean: distcleandistdir: $(DISTFILES)@for f in $(DISTFILES); do \test -f $(distdir)/$${f} \|| ln $(srcdir)/$${f} $(distdir)/$${f} 2>/dev/null \|| cp -p $(srcdir)/$${f} $(distdir)/$${f}; \done@for d in $(SUBDIRS); do \test -d $(distdir)/$${d} \|| mkdir $(distdir)/$${d} \|| exit 1; \chmod 755 $(distdir)/$${d}; \(cd $${d} && $(MAKE) distdir) \|| exit 1; \done