]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
Adapting README, remove global make_script.pl (replaced by cmake now) cmake
authorAndreas Neiser <neiser@kph.uni-mainz.de>
Wed, 26 Jun 2013 16:13:52 +0000 (18:13 +0200)
committerAndreas Neiser <neiser@kph.uni-mainz.de>
Wed, 26 Jun 2013 16:15:06 +0000 (18:15 +0200)
README
make_script.pl [deleted file]

diff --git a/README b/README
index 1c232d3d586a8ffcc2e3525809308741454ab998..e7e76bf5d5a6bbe395a34141b24bfc6261bc811b 100644 (file)
--- a/README
+++ b/README
@@ -1,16 +1,12 @@
 To compile the eventbuilder you just have to run:
 
-$ ./make_script.pl
+$ mkdir build && cd build && cmake .. && make
 
-in the main directory of daqdata.
+in the main directory of daqdata. Then add the path of the
+daqdata/build/bin to your PATH environment variable. The current build
+system uses cmake and might not build everything as the old one (based
+on autotools). Contact neiser@kph.uni-mainz.de if you miss something
+or have a look at the existing CMakeLists.txt and enjoy uncomplicated
+build system (which seems to do everything automagically).
 
-Then add the path of the daqdata/bin to your PATH environment variable.
-
-
-#  ATTENTION                                                                                                                                                                                            
-## FOr debian based systems, use the following configure line                                                                                                                                            
-### CPPFLAGS="-I/usr/include/tcl8.5 -I$path/include" LDFLAGS="-L$path/lib64"
-#./configure --prefix="$path" --libdir="$path/lib64"
-                                                                                                                                                     
-
-#2013-01-31 MT
+# 2013-06-26 Andreas Neiser
diff --git a/make_script.pl b/make_script.pl
deleted file mode 100755 (executable)
index 4559cf8..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/perl
-
-my $path=qx("pwd");
-chomp $path;
-
-
-##  ATTENTION
-## FOr debian based systems, use the following configure line
-### CPPFLAGS="-I/usr/include/tcl8.5 -I$path/include" LDFLAGS="-L$path/lib64" ./configure --prefix="$path" --libdir="$path/lib64"
-
-foreach my $dir ("allParam", "compat", "hadaq") {
-
-    print "chdir to $dir\n";
-    chdir $dir;
-
-    my $command = <<EOF;
-bash bootstrap
-CPPFLAGS="-I$path/include" LDFLAGS="-L$path/lib -L$path/lib64" ./configure --prefix="$path"
-make clean
-make 
-make install
-EOF
-
-  my @commands = split /\n/, $command;
-  foreach my $current_command (@commands) {
-      print "execute: $current_command\n";
-      my $result = system($current_command);
-      if ($result != 0 ){
-         print "error in compile script. return value of command '$current_command' was not successfull! return value: $result reason: $! and: $?\n;";
-         exit;
-      }
-  }
-    print "chdir to '..'\n";
-    chdir "..";
-
-}