The R Project SVN R

Rev

Rev 7002 | Rev 7017 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7002 Rev 7003
Line 8... Line 8...
8
top_builddir = ../..
8
top_builddir = ../..
9
subdir = src/include
9
subdir = src/include
10
 
10
 
11
include $(top_builddir)/Makeconf
11
include $(top_builddir)/Makeconf
12
 
12
 
13
SRC_HEADERS = Applic.h Arith.h Blas.h Complex.h Error.h Errormsg.h \
13
SRC_HEADERS = Mathlib.h \
14
	Fortran.h Linpack.h Mathlib.h Memory.h PrtUtil.h Random.h \
-
 
15
	Rdefines.h Rinternals.h S.h S_compat.h Utils.h f2c.h
14
	Rdefines.h Rinternals.h R.h S.h S_compat.h f2c.h
16
OBJ_HEADERS = Rconfig.h Rversion.h
15
OBJ_HEADERS = Rconfig.h Rversion.h
-
 
16
R_EXT_HEADERS = Arith.h Complex.h Constants.h Error.h Errormsg.h \
-
 
17
	F77.h Memory.h Print.h Random.h Scompat.h Sort.h \
-
 
18
	Linpack.h Blas.h
-
 
19
R_EXT_HEADERS2 = Applic.h Fortran.h PrtUtil.h Utils.h
17
 
20
 
18
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
21
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
19
DISTFILES = Makefile.in README \
22
DISTFILES = Makefile.in README \
20
	Defn.h Fileio.h Graphics.h IOStuff.h Parse.h Print.h \
23
	Defn.h Fileio.h Graphics.h IOStuff.h Parse.h Print.h \
21
	Statdecl.h Startup.h Stattab.h \
24
	Statdecl.h Startup.h Stattab.h \
Line 28... Line 31...
28
	@cd $(top_builddir) && \
31
	@cd $(top_builddir) && \
29
	  CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= \
32
	  CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= \
30
	  $(SHELL) ./config.status
33
	  $(SHELL) ./config.status
31
 
34
 
32
R: Makefile Rconfig.h Rversion.h FFDecl.h FFTab.h
35
R: Makefile Rconfig.h Rversion.h FFDecl.h FFTab.h
33
	@$(MKINSTALLDIRS) $(top_builddir)/include
36
	@$(MKINSTALLDIRS) $(top_builddir)/include $(top_builddir)/include/R_ext
34
	@for f in $(SRC_HEADERS); do \
37
	@for f in $(SRC_HEADERS); do \
35
	  $(INSTALL_DATA) $(srcdir)/$$f $(top_builddir)/include; \
38
	  $(INSTALL_DATA) $(srcdir)/$$f $(top_builddir)/include; \
36
	done
39
	done
-
 
40
	@for f in $(R_EXT_HEADERS); do \
-
 
41
	  $(INSTALL_DATA) $(srcdir)/R_ext/$$f $(top_builddir)/include/R_ext; \
-
 
42
	done
-
 
43
	@for f in $(R_EXT_HEADERS2); do \
-
 
44
	  $(INSTALL_DATA) $(srcdir)/$$f $(top_builddir)/include/R_ext; \
-
 
45
	done
37
	@for f in $(OBJ_HEADERS); do \
46
	@for f in $(OBJ_HEADERS); do \
38
	  $(INSTALL_DATA) $$f $(top_builddir)/include; \
47
	  $(INSTALL_DATA) $$f $(top_builddir)/include; \
39
	done
48
	done
40
 
49
 
41
Rconfig.h: $(top_srcdir)/configure $(srcdir)/Rconfig.h.in
50
Rconfig.h: $(top_srcdir)/configure $(srcdir)/Rconfig.h.in