The R Project SVN R

Rev

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

#
# ${R_HOME}/src/include/Makefile

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

top_builddir = ../..
subdir = src/include

include $(top_builddir)/Makeconf

SRC_HEADERS = R.h S.h Rdefines.h Rinternals.h S_compat.h
R_EXT_HEADERS = Applic.h Arith.h Complex.h Constants.h Error.h \
    Linpack.h Mathlib.h Memory.h PrtUtil.h Random.h RS.h \
    Utils.h f2c.h eventloop.h

OBJ_HEADERS = Rconfig.h Rversion.h

distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
DISTFILES = Makefile.in README \
    Defn.h Errormsg.h Fileio.h Fortran.h Graphics.h IOStuff.h \
    Parse.h Print.h Startup.h \
    $(SRC_HEADERS) \
    config.h.in
SUBDIRS = R_ext

all: Makefile R

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

R: Makefile Rconfig.h Rversion.h FFDecl.h FFTab.h
    @$(MKINSTALLDIRS) $(top_builddir)/include
    @$(MKINSTALLDIRS) $(top_builddir)/include/R_ext
    @for f in $(SRC_HEADERS); do \
      $(INSTALL_DATA) $(srcdir)/$${f} $(top_builddir)/include; \
    done
    @for f in $(R_EXT_HEADERS); do \
      $(INSTALL_DATA) $(srcdir)/R_ext/$${f} \
        $(top_builddir)/include/R_ext; \
    done
    @for f in $(OBJ_HEADERS); do \
      $(INSTALL_DATA) $${f} $(top_builddir)/include; \
    done

config.h: stamp-h
stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status
    @cd $(top_builddir) && \
      CONFIG_FILES= CONFIG_HEADERS=$(subdir)/config.h \
      $(SHELL) ./config.status
    echo > $@
Rconfig.h: $(top_srcdir)/VERSION config.h
    @$(top_srcdir)/tools/GETCONFIG > $@
Rversion.h: $(top_srcdir)/VERSION $(top_srcdir)/date-stamp
    @$(top_srcdir)/tools/GETVERSION > $@

FFDecl.h FFTab.h:: $(top_srcdir)/src/appl/ROUTINES $(top_srcdir)/tools/GETSYMBOLS
    @$(top_srcdir)/tools/GETSYMBOLS

mostlyclean:
clean:
    @rm -f Rconfig.h Rversion.h FFDecl.h FFTab.h
distclean: clean
    @rm -f Makefile config.h stamp-h
maintainer-clean: distclean

install install-strip uninstall::

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
    @for d in $(SUBDIRS); do \
      if test -d $(srcdir)/$${d}; then \
        ((cd $(srcdir); $(TAR) -c -f - --exclude=CVS $${d}) \
            | (cd $(distdir); $(TAR) -x -f -)) \
          || exit 1; \
      fi; \
    done