Rev 7002 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
## ${R_HOME}/src/library/base/MakefileVPATH = @srcdir@srcdir = @srcdir@top_srcdir = @top_srcdir@top_builddir = ../../..subdir = src/library/baseinclude $(top_builddir)/Makeconfdistdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)DISTFILES = INDEX TITLE DESCRIPTION.in Makefile.inall: Makefile@echo "building package \`base'"@$(MKINSTALLDIRS) $(top_builddir)/library/base/R@(f=/tmp/R$$$$; \cat $(srcdir)/R/*.R $(srcdir)/R/unix/*.R >> $${f}; \$(top_srcdir)/tools/move-if-change $${f} \$(top_builddir)/library/base/R/base)@for f in INDEX TITLE; do \if test -f $(srcdir)/$${f}; then \$(INSTALL_DATA) $(srcdir)/$${f} \$(top_builddir)/library/base; \fi; \done@if test -f $(top_builddir)/$(subdir)/DESCRIPTION; then \$(INSTALL_DATA) $(top_builddir)/$(subdir)/DESCRIPTION \$(top_builddir)/library/base; \fi@$(MKINSTALLDIRS) $(top_builddir)/library/base/data@for f in `ls -d $(srcdir)/data/* | sed '/data\/CVS/d'`; do \$(INSTALL_DATA) $${f} $(top_builddir)/library/base/data; \doneMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status@cd $(top_builddir) && \CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= \$(SHELL) ./config.statusmostlyclean: cleanclean:distclean:@rm -f Makefile DESCRIPTIONmaintainer-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 R data man; do \if test -d $(srcdir)/$${d}; then \((cd $(srcdir); $(TAR) -c -f - --exclude=CVS $${d}) \| (cd $(distdir); $(TAR) -x -f -)) \|| exit 1; \fi; \if test -d $(srcdir)/src; then \((cd $(srcdir); $(TAR) -c -f - $${d}/*[.cfh]) \| (cd $(distdir); $(TAR) -x -f -)) \|| exit 1; \fi; \done