Rev 11368 | 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)INSTFILES = \R.css \left.jpg logo.jpg logosm.jpg right.jpg up.jpg \about.html \faq.html \packages-foot.html \packages-head.html \resource.html \template.html \thanks.htmlDISTFILES = Makefile.in $(INSTFILES)SUBDIRS = searchOBJECTS = \index.html \all: Makefile RMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status@cd $(top_builddir) && \CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= \$(SHELL) ./config.statusR: Makefile $(OBJECTS)@if [ "$(srcdir)" != "." ]; 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 \$(top_srcdir)/doc/html/index-default.html > $@ || \$(INSTALL_DATA) $(top_srcdir)/doc/html/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) $@); \donemostlyclean:clean:@for d in $(SUBDIRS); do \(cd $${d} && $(MAKE) $@); \done@if [ "$(srcdir)" != "." ]; then \rm -f $(INSTFILES); \fidistclean: clean@for d in $(SUBDIRS); do \(cd $${d} && $(MAKE) $@); \done@rm -f Makefilemaintainer-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 \if test -f $${d}/Makefile; then \test -d $(distdir)/$${d} \|| mkdir $(distdir)/$${d} \|| exit 1; \chmod 755 $(distdir)/$${d}; \(cd $${d} && $(MAKE) distdir) \|| exit 1; \else \((cd $(srcdir); $(TAR) -c -f - --exclude=CVS $${d}) \| (cd $(distdir); $(TAR) -x -f -)) \|| exit 1; \fi; \done