Rev 29714 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
## ${R_HOME}/src/library/splines/MakefileVPATH = @srcdir@srcdir = @srcdir@top_srcdir = @top_srcdir@top_builddir = ../../..subdir = src/library/splinesinclude $(top_builddir)/Makeconfdistdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)DISTFILES = DESCRIPTION.in Makefile.in NAMESPACEpkg = splinesall: Makefile DESCRIPTION@echo "building package '$(pkg)'"@$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/R@(f=$${TMPDIR:-/tmp}/R$$$$; \cat `LC_COLLATE=C ls $(srcdir)/R/*.R` > $${f}; \$(SHELL) $(top_srcdir)/tools/move-if-change $${f} \$(top_builddir)/library/$(pkg)/R/$(pkg))@for f in COPYRIGHTS INDEX NAMESPACE SOURCES; do \if test -f $(srcdir)/$${f}; then \$(INSTALL_DATA) $(srcdir)/$${f} \$(top_builddir)/library/$(pkg); \fi; \done@if test -f DESCRIPTION; then \$(INSTALL_DATA) DESCRIPTION $(top_builddir)/library/$(pkg); \(tmp="Built: R $(VERSION); "; \if test -d $(srcdir)/src; then \tmp="$${tmp}$(R_PLATFORM)"; \fi; \tmp="$${tmp}; `date`; $(R_OSTYPE)"; \echo "$${tmp}") \>> $(top_builddir)/library/$(pkg)/DESCRIPTION; \fi@if test -d $(srcdir)/data; then \$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/data; \for f in `ls -d $(srcdir)/data/* | sed '/CVS/d'`; do \$(INSTALL_DATA) $${f} $(top_builddir)/library/$(pkg)/data; \done; \fi@if test -d $(srcdir)/man; then \$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/man; \(f=$${TMPDIR:-/tmp}/R$$$$; \for rdfile in $(srcdir)/man/*.Rd; do \cat $${rdfile}; echo '\eof'; \done >> $${f}; \$(SHELL) $(top_srcdir)/tools/move-if-change $${f} \$(top_builddir)/library/$(pkg)/man/$(pkg).Rd); \fi@if test -d src; then \(cd src && $(MAKE)) || exit 1; \fiMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status@cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@DESCRIPTION: $(srcdir)/DESCRIPTION.in $(top_builddir)/config.status@cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@mostlyclean: cleanclean:@if test -d src; then (cd src && $(MAKE) $@); fidistclean:@if test -d src; then (cd src && $(MAKE) $@); fi-@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 demo exec inst man src; do \if test -d $(srcdir)/$${d}; then \((cd $(srcdir); \$(TAR) -c -f - $(DISTDIR_TAR_EXCLUDE) $${d}) \| (cd $(distdir); $(TAR) -x -f -)) \|| exit 1; \fi; \done