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
+++ /dev/null
-#!/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 "..";
-
-}