[Rcpp-commits] r4425 - in pkg/Rcpp: . inst/doc

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Aug 5 14:38:30 CEST 2013


Author: edd
Date: 2013-08-05 14:38:29 +0200 (Mon, 05 Aug 2013)
New Revision: 4425

Modified:
   pkg/Rcpp/cleanup
   pkg/Rcpp/inst/doc/Makefile
Log:
another attempt at reviving builds on R-Forge: hide 'make clean' in inst/doc,
move its functionality into the cleanup script


Modified: pkg/Rcpp/cleanup
===================================================================
--- pkg/Rcpp/cleanup	2013-08-03 20:02:19 UTC (rev 4424)
+++ pkg/Rcpp/cleanup	2013-08-05 12:38:29 UTC (rev 4425)
@@ -1,7 +1,5 @@
 
-cd inst/doc
-make clean
-cd ../..
+cd inst/doc && rm -f index.html *.tex *.bbl *.blg *.aux *.out *.log && cd -
 
 rm -f confdefs.h config.log config.status \
 	src/*.o src/*.so src/*.a src/*.d src/*.dll src/*.rc \

Modified: pkg/Rcpp/inst/doc/Makefile
===================================================================
--- pkg/Rcpp/inst/doc/Makefile	2013-08-03 20:02:19 UTC (rev 4424)
+++ pkg/Rcpp/inst/doc/Makefile	2013-08-05 12:38:29 UTC (rev 4425)
@@ -15,8 +15,8 @@
 OLDpdfall: index.html Rcpp-unitTests.pdf Rcpp-introduction.pdf Rcpp-modules.pdf Rcpp-package.pdf Rcpp-FAQ.pdf Rcpp-extending.pdf Rcpp-sugar.pdf Rcpp-attributes.pdf Rcpp-quickref.pdf
 
 pdfall: index.html 
-	## Play some games with explicit targets to avoid parallel make builds
-	## This is all just because R-Forge insists on re-making these, seemingly in parallel
+        ## Play some games with explicit targets to avoid parallel make builds
+        ## This is all just because R-Forge insists on re-making these, seemingly in parallel
 	make Rcpp-extending.pdf
 	make Rcpp-FAQ.pdf
 	make Rcpp-introduction.pdf
@@ -30,12 +30,10 @@
 pdfclean:
 	rm -f Rcpp-extending.pdf  Rcpp-FAQ.pdf  Rcpp-introduction.pdf  Rcpp-modules.pdf  Rcpp-package.pdf  Rcpp-quickref.pdf  Rcpp-sugar.pdf  Rcpp-attributes.pdf  Rcpp-unitTests.pdf
 
-rotateFiles:
+#clean:
+#	rm -f index.html
+#	rm -f *.tex *.bbl *.blg *.aux *.out *.log
 
-clean:
-	rm -f index.html
-	rm -f *.tex *.bbl *.blg *.aux *.out *.log
-
 setvars:
 ifeq (${R_HOME},)
 R_HOME=	$(shell R RHOME)



More information about the Rcpp-commits mailing list