The R Project SVN R

Rev

Rev 14095 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#
# ${R_HOME}/share/Makefile

VPATH = @srcdir@
srcdir = @srcdir@
top_srcdir = @top_srcdir@

top_builddir = ..
subdir = share

include $(top_builddir)/Makeconf

distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
DISTFILES = Makefile.in

## subdirectories of R_HOME/share
SUBDIRS = glade make perl sh texmf
## subdirectories of R_HOME/share/perl
SUBDIRS_PERL = R Text

GNOME_IF_FILES = @GNOME_IF_FILES@

all: Makefile R

Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    @cd $(top_builddir) && \
      CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= \
      $(SHELL) ./config.status

R:
    @if test "$(BUILDDIR_IS_SRCDIR)" = no ; then \
      $(MAKE) rhome=$(top_builddir) install-sources; \
    fi

docs:

install: install-message installdirs install-sources
installdirs:
    @$(MKINSTALLDIRS) $(rhome)/share
    @if test -n "$(GNOME_IF_FILES)"; then \
      $(MKINSTALLDIRS) $(rhome)/share/glade; \
    fi
    @$(MKINSTALLDIRS) $(rhome)/share/make
    @$(MKINSTALLDIRS) $(rhome)/share/perl
    @for d in $(SUBDIRS_PERL); do \
      $(MKINSTALLDIRS) $(rhome)/share/perl/$${d}; \
    done
    @$(MKINSTALLDIRS) $(rhome)/share/sh
    @$(MKINSTALLDIRS) $(rhome)/share/texmf
install-message:
    @echo "installing share ..."
install-sources: installdirs
    @if test -n "$(GNOME_IF_FILES)"; then \
      for f in $(srcdir)/glade/*.glade; do \
        $(INSTALL_DATA) $${f} $(rhome)/share/glade; \
      done; \
    fi
    @for f in $(srcdir)/make/*.mk; do \
      $(INSTALL_DATA) $${f} $(rhome)/share/make; \
    done
    @for d in $(SUBDIRS_PERL); do \
      for f in $(srcdir)/perl/$${d}/*.pm; do \
        $(INSTALL_DATA) $${f} $(rhome)/share/perl/$${d}; \
      done; \
    done
    @for f in $(srcdir)/perl/*.pl; do \
      $(INSTALL_DATA) $${f} $(rhome)/share/perl; \
    done
    @for f in $(srcdir)/sh/*.sh; do \
      $(INSTALL_DATA) $${f} $(rhome)/share/sh; \
    done
    @for f in $(srcdir)/texmf/*.sty \
          $(srcdir)/texmf/*.cfg \
          $(srcdir)/texmf/*.fd; do \
      $(INSTALL_DATA) $${f} $(rhome)/share/texmf; \
    done
install-strip: install

uninstall:
    @echo "uninstalling share ..."
    @rm -rf $(rhome)/share

mostlyclean:
clean:
    @if test "$(BUILDDIR_IS_SRCDIR)" = no ; then \
      rm -rf $(SUBDIRS); \
    fi
distclean:
    @rm -f Makefile
maintainer-clean: distclean

distdir: $(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
    @((cd $(srcdir); \
          $(TAR) -c -f - --exclude=CVS $(SUBDIRS)) \
        | (cd $(distdir); $(TAR) -x -f -)) \
      || exit 1