The R Project SVN R

Rev

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

Rev 56480 Rev 59853
Line 112... Line 112...
112
	  for f in  $(srcdir)/exec/*; do \
112
	  for f in  $(srcdir)/exec/*; do \
113
	    $(INSTALL_DATA) "$${f}" $(top_builddir)/library/$(pkg)/exec; \
113
	    $(INSTALL_DATA) "$${f}" $(top_builddir)/library/$(pkg)/exec; \
114
	  done; \
114
	  done; \
115
	fi
115
	fi
116
 
116
 
117
## only use if byte-compilation is disabled
117
## only used if byte-compilation is disabled
118
mklazy:
118
mklazy:
119
	@$(INSTALL_DATA) all.R $(top_builddir)/library/$(pkg)/R/$(pkg)
119
	@$(INSTALL_DATA) all.R $(top_builddir)/library/$(pkg)/R/$(pkg)
120
	@$(ECHO) "tools:::makeLazyLoading(\"$(pkg)\")" | \
120
	@$(ECHO) "tools:::makeLazyLoading(\"$(pkg)\")" | \
121
	  R_DEFAULT_PACKAGES=$(DEFPKGS) LC_ALL=C $(R_EXE) > /dev/null
121
	  R_DEFAULT_PACKAGES=$(DEFPKGS) LC_ALL=C $(R_EXE) > /dev/null
122
 
122
 
Line 124... Line 124...
124
 
124
 
125
mkRsimple:
125
mkRsimple:
126
	@$(INSTALL_DATA) all.R $(top_builddir)/library/$(pkg)/R/$(pkg)
126
	@$(INSTALL_DATA) all.R $(top_builddir)/library/$(pkg)/R/$(pkg)
127
	@rm -f $(top_builddir)/library/$(pkg)/R/$(pkg).rd?
127
	@rm -f $(top_builddir)/library/$(pkg)/R/$(pkg).rd?
128
 
128
 
129
mkpo:
-
 
130
	@if test -d $(srcdir)/inst/po; then \
-
 
131
	  if test "$(USE_NLS)" = "yes"; then \
-
 
132
	  $(MKINSTALLDIRS) $(top_builddir)/library/$(pkg)/po; \
-
 
133
	  cp -pr  $(srcdir)/inst/po/* $(top_builddir)/library/$(pkg)/po; \
-
 
134
	  find "$(top_builddir)/library/$(pkg)/po" -name .svn -type d -prune \
-
 
135
	    -exec rm -rf \{\} \; 2>/dev/null; \
-
 
136
	  fi; \
-
 
137
	fi
-
 
138
 
-
 
139
mksrc:
129
mksrc:
140
	@if test -d src; then \
130
	@if test -d src; then \
141
	  (cd src && $(MAKE)) || exit 1; \
131
	  (cd src && $(MAKE)) || exit 1; \
142
	fi
132
	fi
143
 
133