Rev 43484 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
## ${R_HOME}/src/library/tcltk/MakefileVPATH = @srcdir@srcdir = @srcdir@top_srcdir = @top_srcdir@top_builddir = ../../..subdir = src/library/tcltkinclude $(top_builddir)/Makeconfdistdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)DISTFILES = DESCRIPTION.in Makefile.in NAMESPACEpkg = tcltkR_EXE = $(top_builddir)/bin/R --vanillaRSRC = `LC_COLLATE=C ls $(srcdir)/R/*.R $(srcdir)/R/unix/zzz.R`all: Makefile DESCRIPTION@$(ECHO) "building package '$(pkg)'"@$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/R@(f=$${TMPDIR:-/tmp}/R$$$$; \if test @use_tcltk@ = yes; then \cat $(RSRC) > $${f}; \$(SHELL) $(top_srcdir)/tools/move-if-change $${f} all.R ; \else \$(SHELL) $(top_srcdir)/tools/copy-if-change \$(srcdir)/R/unix/zzzstub.R \$(top_builddir)/library/$(pkg)/R/$(pkg) ; \fi)@if test @use_tcltk@ = yes; then \$(INSTALL_DATA) $(srcdir)/NAMESPACE \$(top_builddir)/library/$(pkg); \rm -f $(top_builddir)/library/$(pkg)/Meta/nsInfo.rds; \fi;@for f in COPYRIGHTS INDEX SOURCES; do \if test -f $(srcdir)/$${f}; then \$(INSTALL_DATA) $(srcdir)/$${f} \$(top_builddir)/library/$(pkg); \fi; \done@if test -f DESCRIPTION; then \$(ECHO) "tools:::.install_package_description('.', '"$(top_builddir)/library/${pkg}"')" | \R_DEFAULT_PACKAGES=NULL $(R_EXE) --slave > /dev/null ; \fi@if test -d $(srcdir)/demo; then \$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/demo; \for f in `ls -d $(srcdir)/demo/* | sed -e '/CVS/d' -e '/00Index/d'`; do \$(INSTALL_DATA) $${f} $(top_builddir)/library/$(pkg)/demo; \done; \fi@if test -d $(srcdir)/exec; then \$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/exec; \for f in `ls -d $(srcdir)/exec/* | sed '/CVS/d'`; do \$(INSTALL_DATA) $${f} $(top_builddir)/library/$(pkg)/exec; \done; \fi@if test -d $(srcdir)/inst/po; then \if test "@USE_NLS@" = "yes"; then \$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/po; \cp -pr $(srcdir)/inst/po/* $(top_builddir)/library/$(pkg)/po; \find "$(top_builddir)/library/$(pkg)/po" -name .svn -type d -prune \-exec rm -rf \{\} \; 2>/dev/null; \fi; \fi@if test -d $(srcdir)/man; then \$(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/man; \(f=$${TMPDIR:-/tmp}/R$$$$; \for rdfile in $(srcdir)/man/*.Rd; do \$(ECHO) "% --- Source file: $${rdfile} ---"; \cat $${rdfile} $(top_srcdir)/src/library/eof_file; \done >> $${f}; \$(SHELL) $(top_srcdir)/tools/move-if-change $${f} \$(top_builddir)/library/$(pkg)/man/$(pkg).Rd); \rm -f $(top_builddir)/library/$(pkg)/man/$(pkg).Rd.gz; \$(R_GZIPCMD) $(top_builddir)/library/$(pkg)/man/$(pkg).Rd; \fi@if test -d src -a @use_tcltk@ = yes; then \(cd src && $(MAKE)) || exit 1; \fi@if test @use_tcltk@ = yes; then \$(INSTALL_DATA) all.R $(top_builddir)/library/$(pkg)/R/$(pkg) ; \$(ECHO) "tools:::makeLazyLoading(\"$(pkg)\")" | \R_DEFAULT_PACKAGES=NULL LC_ALL=C $(R_EXE) --slave > /dev/null ; \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) $@); fi-@rm -f all.Rdistclean:@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 po 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