Browse code

Disable staged install, attempt to fix Win uild

Steffen Neumann authored on 19/04/2019 13:39:34
Showing 1 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 rm -f confdefs.h config.log config.status config.sub config.guess
2 2
 rm -f src/*.o src/*.so
3 3
 find src/ -name \*.o -exec rm {} \;
4
+find src/ -name *.o -exec rm {} \;
4 5
 rm -f src/libims.so*
5
-#make -k -C ./src/imslib/ clean
6 6
 rm -f inst/doc/*.cpp inst/doc/*.hpp inst/doc/*.R 
7 7
 rm -f inst/doc/*.Rd inst/doc/*.aux inst/doc/*.log inst/doc/*.tex inst/doc/*.out
8 8
 rm -rf inst/doc/auto
Browse code

Explicitly cleanup *.o files

Steffen Neumann authored on 18/04/2019 13:33:28
Showing 1 changed files
... ...
@@ -1,7 +1,8 @@
1 1
 rm -f confdefs.h config.log config.status config.sub config.guess
2 2
 rm -f src/*.o src/*.so
3
+find src/ -name \*.o -exec rm {} \;
3 4
 rm -f src/libims.so*
4
-make -k -C ./src/imslib/ clean
5
+#make -k -C ./src/imslib/ clean
5 6
 rm -f inst/doc/*.cpp inst/doc/*.hpp inst/doc/*.R 
6 7
 rm -f inst/doc/*.Rd inst/doc/*.aux inst/doc/*.log inst/doc/*.tex inst/doc/*.out
7 8
 rm -rf inst/doc/auto
Browse code

More of Dirk's fixes

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rdisop@63434 bc3139a8-67e5-0310-9ffc-ced21a209358

s.neumann authored on 04/03/2012 12:27:23
Showing 1 changed files
... ...
@@ -1,7 +1,7 @@
1 1
 rm -f confdefs.h config.log config.status config.sub config.guess
2 2
 rm -f src/*.o src/*.so
3 3
 rm -f src/libims.so*
4
-make -C ./src/imslib/ clean
4
+make -k -C ./src/imslib/ clean
5 5
 rm -f inst/doc/*.cpp inst/doc/*.hpp inst/doc/*.R 
6 6
 rm -f inst/doc/*.Rd inst/doc/*.aux inst/doc/*.log inst/doc/*.tex inst/doc/*.out
7 7
 rm -rf inst/doc/auto
Browse code

Moved from the ancient embedded Rcpp to RcppClassic thanks to the work of Dirk Eddelbuettel who did the porting

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rdisop@63004 bc3139a8-67e5-0310-9ffc-ced21a209358

s.neumann authored on 23/02/2012 08:01:30
Showing 1 changed files
... ...
@@ -1,13 +1,9 @@
1 1
 rm -f confdefs.h config.log config.status config.sub config.guess
2
-rm -f src/Makevars
3 2
 rm -f src/*.o src/*.so
4 3
 rm -f src/libims.so*
5
-rm -f RcppSrc/*.[ao]
6 4
 make -C ./src/imslib/ clean
7
-rm -f RcppSrc/*.o RcppSrc/*.a inst/Rcpp-version.txt
8 5
 rm -f inst/doc/*.cpp inst/doc/*.hpp inst/doc/*.R 
9 6
 rm -f inst/doc/*.Rd inst/doc/*.aux inst/doc/*.log inst/doc/*.tex inst/doc/*.out
10
-rm -f inst/Rcpp-license.txt
11 7
 rm -rf inst/doc/auto
12 8
 rm -rf autom4te.cache
13 9
 rm -rf aclocal.m4
... ...
@@ -16,6 +12,4 @@ find . -name \*.flc -exec rm {} \;
16 12
 rm -f inst/doc/Rdisop.out
17 13
 
18 14
 # Windows related stuff
19
-rm src/*.dll
20
-rm src/Makedeps
21
-rm src/*_res.*
15
+rm -f src/*.dll src/Makedeps src/*_res.*
Browse code

More Fixes in Win Build

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rdisop@28010 bc3139a8-67e5-0310-9ffc-ced21a209358

s.neumann authored on 16/10/2007 10:50:54
Showing 1 changed files
... ...
@@ -13,4 +13,9 @@ rm -rf autom4te.cache
13 13
 rm -rf aclocal.m4
14 14
 find . -name \*~ -exec rm {} \;
15 15
 find . -name \*.flc -exec rm {} \;
16
-rm -f inst/doc/Rdisop.out
17 16
\ No newline at end of file
17
+rm -f inst/doc/Rdisop.out
18
+
19
+# Windows related stuff
20
+rm src/*.dll
21
+rm src/Makedeps
22
+rm src/*_res.*
Browse code

added the Rdisop package (2nd try)

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rdisop@27972 bc3139a8-67e5-0310-9ffc-ced21a209358

hpages@fhcrc.org authored on 12/10/2007 19:36:30
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,16 @@
1
+rm -f confdefs.h config.log config.status config.sub config.guess
2
+rm -f src/Makevars
3
+rm -f src/*.o src/*.so
4
+rm -f src/libims.so*
5
+rm -f RcppSrc/*.[ao]
6
+make -C ./src/imslib/ clean
7
+rm -f RcppSrc/*.o RcppSrc/*.a inst/Rcpp-version.txt
8
+rm -f inst/doc/*.cpp inst/doc/*.hpp inst/doc/*.R 
9
+rm -f inst/doc/*.Rd inst/doc/*.aux inst/doc/*.log inst/doc/*.tex inst/doc/*.out
10
+rm -f inst/Rcpp-license.txt
11
+rm -rf inst/doc/auto
12
+rm -rf autom4te.cache
13
+rm -rf aclocal.m4
14
+find . -name \*~ -exec rm {} \;
15
+find . -name \*.flc -exec rm {} \;
16
+rm -f inst/doc/Rdisop.out
0 17
\ No newline at end of file