diff --git a/+ b/+ deleted file mode 100644 index e76a62a..0000000 --- a/+ +++ /dev/null @@ -1,276 +0,0 @@ -### psi specific - select compiler -#source -# default is sf -# -module unload gcc -module load gcc/7.3.0 -### psi specific - end - -rm -f configure.ac -ln -s configurePSI.ac configure.ac - -rm -f ./aclocal.m4 -rm -rf ./autom4te.cache -aclocal --force -I m4 -/opt/gfa/python-3.7/latest/bin/libtoolize --force --copy #select libtools 2.4.6 -autoconf --force #interprets configure.ac -autoheader --force -automake --force --add-missing --copy -#autoreconf not wanted - -#Check what the EPICS RELEASE IS from ${EPICS}/base -#Used by ./configure -#Assumes format ${EPICS}/base-3.14.12 -#source cafeVersion-gcc-7.3.0 -CAFE_V="cafe-1.14.1" -#For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH -#Assume Linux but check if Darwin -CAFE_HOST_FLAG_DARWIN=$(echo ${EPICS_HOST_ARCH} | grep -c "Darwin") -export CAFE_HOST_FLAG_DARWIN=$CAFE_HOST_FLAG_DARWIN - -RETURN_ON_WRONG_INPUT=true -RETURN_FLAG=false - -EPICS_BASE=$(readlink ${EPICS}/base) -#EB=$(readlink /afs/psi.ch/project/cafe/gitworkspace/CAFE/cpp/base) -echo $EPICS_BASE -if [ -z "$EPICS_BASE" ] -then - EPICS_BASE='base-7.4.1' #7.0 = 7+0 = 7 for major release -fi - -echo 'input' "$0" "$1" "$2" -echo $EPICS_BASE - -FACILITY=$(echo "$1" | tr '[:upper:]' '[:lower:]') -CACLIENT=$(echo "$2" | tr '[:upper:]' '[:lower:]') - -FACILITY_DEFAULT="sf" -CACLIENT_DEFAULT="python" - -FACILITY_TEMP="" -CACLIENT_TEMP="" - -echo 'input arg. facility/target' $FACILITY $CACLIENT - -if [ -n "$FACILITY" ] -then - if [ "$FACILITY" = "matlab" ] || [ "$FACILITY" = "python" ] || \ - [ "$FACILITY" = "py37" ] || [ "$FACILITY" = "py35" ] || \ - [ "$FACILITY" = "julia" ] || [ "$FACILITY" = "cpp" ] || \ - [ "$FACILITY" = "cc" ] - then - CACLIENT_TEMP=$FACILITY - FACILITY_TEMP=$2 - fi -fi - -if [ -n "$CACLIENT" ] -then - if [ "$CACLIENT" = "sls" ] || [ "$CACLIENT" = "sls2" ] || \ - [ "$CACLIENT" = "sf" ] || [ "$CACLIENT" = "swissfel" ] || \ - [ "$CACLIENT" = "sfel" ] || [ "$CACLIENT" = "hipa" ] - then - if [ -z $FACILITY_TEMP ] - then - FACILITY_TEMP=$CACLIENT - CACLIENT_TEMP=$1 - fi - fi -fi - - - -if [ -z "$FACILITY" ] -then - FACILITY="sf" - echo "FACILITY = " $FACILITY - if [ -z $CACLIENT ] - then - CACLIENT=$CACLIENT_DEFAULT - fi -elif [ "$FACILITY" = "sls" ] || [ "$FACILITY" = "sls2" ] || \ - [ "$FACILITY" = "sf" ] || [ "$FACILITY" = "swissfel" ] || \ - [ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "hipa" ] -then - echo "FACILITY = " $FACILITY -elif [ -n "$FACILITY_TEMP" ] -then - if [ "$FACILITY_TEMP" = "sls" ] || [ "$FACILITY_TEMP" = "sls2" ] || \ - [ "$FACILITY_TEMP" = "sf" ] || [ "$FACILITY_TEMP" = "swissfel" ] || \ - [ "$FACILITY_TEMP" = "sfel" ] || [ "$FACILITY_TEMP" = "hipa" ] - then - - - FACILITY=$FACILITY_TEMP - else - if [ -n "$2" ] - then - echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY - echo "***VALID VALUES ARE: sls sls2 sf hipa" - RETURN_FLAG=true - fi - echo "***OTHERWISE THE DEFAULT FACILITY IS:" $FACILITY_DEFAULT - FACILITY=$FACILITY_DEFAULT - fi -else - echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY - echo "***VALID VALUES ARE: sls sls2 sf hipa" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT FACILITY IS: " $FACILITY_DEFAULT - FACILITY=$FACILITY_DEFAULT -fi - -if [ -n "$CACLIENT" ] -then - if [ "$CACLIENT" = "matlab" ] || [ "$CACLIENT" = "python" ] || \ - [ "$CACLIENT" = "py37" ] || [ "$CACLIENT" = "py35" ] || \ - [ "$CACLIENT" = "julia" ] || [ "$CACLIENT" = "cpp" ] || \ - [ "$CACLIENT" = "cc" ] - then - echo "CA TARGET = " $CACLIENT - else - if [ -n "$CACLIENT_TEMP" ] - then - if [ "$CACLIENT_TEMP" = "matlab" ] || [ "$CACLIENT_TEMP" = "python" ] || \ - [ "$CACLIENT_TEMP" = "py37" ] || [ "$CACLIENT_TEMP" = "py35" ] || \ - [ "$CACLIENT_TEMP" = "julia" ] || [ "$CACLIENT_TEMP" = "cpp" ] || \ - [ "$CACLIENT_TEMP" = "cc" ] - then - CACLIENT=$CACLIENT_TEMP - else - echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT - echo "***VALID VALUES ARE: cpp matlab python" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT - CACLIENT=$CACLIENT_DEFAULT - fi - else - echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT - echo "***VALID VALUES ARE: cpp matlab python" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT - CACLIENT=$CACLIENT_DEFAULT - fi - fi -else - CACLIENT=$CACLIENT_DEFAULT -fi - - - -if [ $RETURN_ON_WRONG_INPUT = true ] ; then - if [ $RETURN_FLAG = true ] ; then - return 1 2>/dev/null - exit 1 - fi -fi - -echo "FACILITY SELECTED = " $FACILITY -echo "CA TARGET SELECTED = " $CACLIENT - -ENABLE_OPTIONS="--enable-boost-inc" - -if [ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "swissfel" ] -then - FACILITY="sf" -fi - -if [ "$CACLIENT" = "python" ] || [ "$CACLIENT" = "julia" ] -then - CACLIENT="py37" -fi - - -if [ "$FACILITY" = "sls2" ] -then - ENABLE_OPTIONS+=" --enable-epics7" - CAFE_V+="-sls2" -else - ENABLE_OPTIONS+=" --enable-epics3" - if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] - then - CAFE_V+="-sf" - fi -fi - -if [ "$CACLIENT" = "py35" ] -then - ENABLE_OPTIONS+=" --enable-python35" - ENABLE_OPTIONS+=" --enable-qt4" - CAFE_V+="-py35" -elif [ "$CACLIENT" = "py37" ] -then - ENABLE_OPTIONS+=" --enable-python37" - ENABLE_OPTIONS+=" --enable-qt5" - CAFE_V+="-py37" -#else - #ENABLE_OPTIONS+=" --enable-qt5" -fi - -if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] -then - #rm -f src/PyCafe.cpp - #ln -s PyCafe3.cpp src/PyCafe.cpp - ENABLE_OPTIONS+=" --enable-json" - ENABLE_OPTIONS+=" --enable-zeromq" - ENABLE_OPTIONS+=" --enable-curl" - ENABLE_OPTIONS+=" --enable-lz4" -#else - #rm -f src/PyCafe.cpp - #ln -s PyCafe_sls.cpp src/PyCafe.cpp -fi - -CAFE_V+="-gcc-"$GCC_VERSION - -echo "CAFE VERSION: $CAFE_V" - -#echo 'EPICS BASE IS='$EPICS_BASE -#echo 'EPICS BASE DIR='${EPICS}/base-7.0.4.1 - -EB1=$(echo $EPICS_BASE | sed -e "s/[a-zA-Z]*-//g") -EBMAJ=$(echo $EB1 | sed -e "s/[[:punct:]].*//g") -EBMIN1=$(echo $EB1 | sed -e "s/^[[:digit:]]*[[:punct:]]//g") -EBMIN=$(echo $EBMIN1 | sed -e "s/[[:punct:]][[:digit:]]*//g") -EBPAT=$(echo $EB1 | sed -e "s/[[:digit:]]*[[:punct:]]//g") -echo EPICS_MAJOR=$EBMAJ -echo EPICS_MINOR=$EBMIN -echo EPICS_PATCH=$EBPAT -#echo $EBMIN1 - -export CAFE_EPICS_V_MAJOR=$EBMAJ -export CAFE_EPICS_V_MINOR=$EBMIN -export CAFE_EPICS_V_PATCH=$EBPAT - -#ENABLE_OPTIONS+=" --enable-qt5" -##ENABLE_OPTIONS+=" --enable-qt4" -#ENABLE_OPTIONS+=" --enable-python37" -##ENABLE_OPTIONS+=" --enable-python35" -#ENABLE_OPTIONS+=" --enable-json" -#ENABLE_OPTIONS+=" --enable-zeromq" -#ENABLE_OPTIONS+=" --enable-curl" -#ENABLE_OPTIONS+=" --enable-lz4" - -echo 'ENABLE_OPTIONS='$ENABLE_OPTIONS - -./configure \ - --prefix=/opt/gfa/cafe/cpp/${CAFE_V} \ - --libdir=/opt/gfa/cafe/cpp/${CAFE_V}/lib/${EPICS_HOST_ARCH} \ - ${ENABLE_OPTIONS} \ - --with-boost-inc=/opt/gfa/cafe/boost/boost_1_61_0/include \ - --with-epics7=${EPICS}/base-7.0.4.1 \ - --with-epics3=${EPICS}/base \ - --with-python37=/opt/gfa/python-3.7/latest \ - --with-python35=/opt/gfa/python-3.5/latest \ - --with-qt5=/opt/gfa/python-3.7/latest \ - --with-qt4=/opt/gfa/python-3.5/latest \ - --with-json=/opt/gfa/zmsglog/json/jsoncpp-src-0.6.0-rc2 \ - --with-zeromq=/opt/gfa/zmq/zeromq-4.2.3-gcc-6.3.0 \ - --with-curl=/opt/gfa/zmq/curl-7.55.1 \ - --with-lz4=/opt/gfa/zmq/lz4/lib - -unset CAFE_EPICS_V_PATCH -unset CAFE_EPICS_V_MINOR -unset CAFE_EPICS_V_MAJOR - -unset CAFE_HOST_FLAG_DARWIN diff --git a/autogen_slsbd.sh b/autogen_slsbd.sh deleted file mode 100644 index dc3b7d6..0000000 --- a/autogen_slsbd.sh +++ /dev/null @@ -1,286 +0,0 @@ -### psi specific - select compiler -#source -# default is sf -# -module unload gcc -module load gcc/7.3.0 -### psi specific - end - -rm -f configure.ac -ln -s configurePSI.ac configure.ac - -rm -f ./aclocal.m4 -rm -rf ./autom4te.cache -aclocal --force -I m4 -/opt/gfa/python-3.7/latest/bin/libtoolize --force --copy #select libtools 2.4.6 -autoconf --force #interprets configure.ac -autoheader --force -automake --force --add-missing --copy -#autoreconf not wanted - -#Check what the EPICS RELEASE IS from ${EPICS}/base -#Used by ./configure -#Assumes format ${EPICS}/base-3.14.12 -#source cafeVersion-gcc-7.3.0 -CAFE_V="cafe-1.15.0" -#For later check of existence of HOST_ARCH for $EPICS/include/os/$HOST_ARCH -#Assume Linux but check if Darwin -CAFE_HOST_FLAG_DARWIN=$(echo ${EPICS_HOST_ARCH} | grep -c "Darwin") -export CAFE_HOST_FLAG_DARWIN=$CAFE_HOST_FLAG_DARWIN - -RETURN_ON_WRONG_INPUT=true -RETURN_FLAG=false - -EPICS_BASE=$(readlink ${EPICS}/base) -#EB=$(readlink /afs/psi.ch/project/cafe/gitworkspace/CAFE/cpp/base) -echo $EPICS_BASE -if [ -z "$EPICS_BASE" ] -then - EPICS_BASE='base-7.4.1' #7.0 = 7+0 = 7 for major release -fi - -echo 'input' "$0" "$1" "$2" -echo $EPICS_BASE - -FACILITY=$(echo "$1" | tr '[:upper:]' '[:lower:]') -CACLIENT=$(echo "$2" | tr '[:upper:]' '[:lower:]') - -FACILITY_DEFAULT="sf" -CACLIENT_DEFAULT="python" - -FACILITY_TEMP="" -CACLIENT_TEMP="" - -echo 'input arg. facility/target' $FACILITY $CACLIENT - -if [ -n "$FACILITY" ] -then - if [ "$FACILITY" = "matlab" ] || [ "$FACILITY" = "python" ] || \ - [ "$FACILITY" = "py37" ] || [ "$FACILITY" = "py35" ] || \ - [ "$FACILITY" = "julia" ] || [ "$FACILITY" = "cpp" ] || \ - [ "$FACILITY" = "cc" ] - then - CACLIENT_TEMP=$FACILITY - FACILITY_TEMP=$2 - fi -fi - -if [ -n "$CACLIENT" ] -then - if [ "$CACLIENT" = "sls" ] || [ "$CACLIENT" = "sls2" ] || \ - [ "$CACLIENT" = "sf" ] || [ "$CACLIENT" = "swissfel" ] || \ - [ "$CACLIENT" = "sfel" ] || [ "$CACLIENT" = "hipa" ] - then - if [ -z $FACILITY_TEMP ] - then - FACILITY_TEMP=$CACLIENT - CACLIENT_TEMP=$1 - fi - fi -fi - - - -if [ -z "$FACILITY" ] -then - FACILITY="sf" - echo "FACILITY = " $FACILITY - if [ -z $CACLIENT ] - then - CACLIENT=$CACLIENT_DEFAULT - fi -elif [ "$FACILITY" = "sls" ] || [ "$FACILITY" = "sls2" ] || \ - [ "$FACILITY" = "sf" ] || [ "$FACILITY" = "swissfel" ] || \ - [ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "hipa" ] -then - echo "FACILITY = " $FACILITY -elif [ -n "$FACILITY_TEMP" ] -then - if [ "$FACILITY_TEMP" = "sls" ] || [ "$FACILITY_TEMP" = "sls2" ] || \ - [ "$FACILITY_TEMP" = "sf" ] || [ "$FACILITY_TEMP" = "swissfel" ] || \ - [ "$FACILITY_TEMP" = "sfel" ] || [ "$FACILITY_TEMP" = "hipa" ] - then - - - FACILITY=$FACILITY_TEMP - else - if [ -n "$2" ] - then - echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY - echo "***VALID VALUES ARE: sls sls2 sf hipa" - RETURN_FLAG=true - fi - echo "***OTHERWISE THE DEFAULT FACILITY IS:" $FACILITY_DEFAULT - FACILITY=$FACILITY_DEFAULT - fi -else - echo "***UNRECOGNIZED INPUT FACILITY***" $FACILITY - echo "***VALID VALUES ARE: sls sls2 sf hipa" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT FACILITY IS: " $FACILITY_DEFAULT - FACILITY=$FACILITY_DEFAULT -fi - -if [ -n "$CACLIENT" ] -then - if [ "$CACLIENT" = "matlab" ] || [ "$CACLIENT" = "python" ] || \ - [ "$CACLIENT" = "py37" ] || [ "$CACLIENT" = "py35" ] || \ - [ "$CACLIENT" = "julia" ] || [ "$CACLIENT" = "cpp" ] || \ - [ "$CACLIENT" = "cc" ] - then - echo "CA TARGET = " $CACLIENT - else - if [ -n "$CACLIENT_TEMP" ] - then - if [ "$CACLIENT_TEMP" = "matlab" ] || [ "$CACLIENT_TEMP" = "python" ] || \ - [ "$CACLIENT_TEMP" = "py37" ] || [ "$CACLIENT_TEMP" = "py35" ] || \ - [ "$CACLIENT_TEMP" = "julia" ] || [ "$CACLIENT_TEMP" = "cpp" ] || \ - [ "$CACLIENT_TEMP" = "cc" ] - then - CACLIENT=$CACLIENT_TEMP - else - echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT - echo "***VALID VALUES ARE: cpp matlab python" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT - CACLIENT=$CACLIENT_DEFAULT - fi - else - echo "***UNRECOGNIZED INPUT CA TARGET***" $CACLIENT - echo "***VALID VALUES ARE: cpp matlab python" - RETURN_FLAG=true - echo "***OTHERWISE THE DEFAULT CA TARGET IS:" $CACLIENT_DEFAULT - CACLIENT=$CACLIENT_DEFAULT - fi - fi -else - CACLIENT=$CACLIENT_DEFAULT -fi - - - -if [ $RETURN_ON_WRONG_INPUT = true ] ; then - if [ $RETURN_FLAG = true ] ; then - return 1 2>/dev/null - exit 1 - fi -fi - -echo "FACILITY SELECTED = " $FACILITY -echo "CA TARGET SELECTED = " $CACLIENT - -ENABLE_OPTIONS="--enable-boost-inc" - -if [ "$FACILITY" = "sfel" ] || [ "$FACILITY" = "swissfel" ] -then - FACILITY="sf" -fi - -if [ "$CACLIENT" = "python" ] || [ "$CACLIENT" = "julia" ] -then - CACLIENT="py37" -fi - - -if [ "$FACILITY" = "sls2" ] -then - ENABLE_OPTIONS+=" --enable-epics7" - CAFE_V+="-sls2" -else - ENABLE_OPTIONS+=" --enable-epics3" - if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] - then - CAFE_V+="-sf" - fi -fi - -if [ "$CACLIENT" = "py35" ] -then - ENABLE_OPTIONS+=" --enable-python35" - ENABLE_OPTIONS+=" --enable-qt4" - CAFE_V+="-py35" -elif [ "$CACLIENT" = "py37" ] -then - ENABLE_OPTIONS+=" --enable-python37" - ENABLE_OPTIONS+=" --enable-qt5" - CAFE_V+="-py37" -#else - #ENABLE_OPTIONS+=" --enable-qt5" -elif [ "$CACLIENT" = "py34" ] -then - ENABLE_OPTIONS+=" --enable-python34" - ENABLE_OPTIONS+=" --enable-qt4" - CAFE_V+="-py34" -#else - #ENABLE_OPTIONS+=" --enable-qt5" -fi - - -if [ "$FACILITY" = "sf" ] && [ "$CACLIENT" != "matlab" ] -then - #rm -f src/PyCafe.cpp - #ln -s PyCafe3.cpp src/PyCafe.cpp - ENABLE_OPTIONS+=" --enable-json" - ENABLE_OPTIONS+=" --enable-zeromq" - ENABLE_OPTIONS+=" --enable-curl" - ENABLE_OPTIONS+=" --enable-lz4" -#else - #rm -f src/PyCafe.cpp - #ln -s PyCafe_sls.cpp src/PyCafe.cpp -fi - -CAFE_V+="-gcc-"$GCC_VERSION - -echo "CAFE VERSION: $CAFE_V" - -#echo 'EPICS BASE IS='$EPICS_BASE -#echo 'EPICS BASE DIR='${EPICS}/base-7.0.4.1 - -EB1=$(echo $EPICS_BASE | sed -e "s/[a-zA-Z]*-//g") -EBMAJ=$(echo $EB1 | sed -e "s/[[:punct:]].*//g") -EBMIN1=$(echo $EB1 | sed -e "s/^[[:digit:]]*[[:punct:]]//g") -EBMIN=$(echo $EBMIN1 | sed -e "s/[[:punct:]][[:digit:]]*//g") -EBPAT=$(echo $EB1 | sed -e "s/[[:digit:]]*[[:punct:]]//g") -echo EPICS_MAJOR=$EBMAJ -echo EPICS_MINOR=$EBMIN -echo EPICS_PATCH=$EBPAT -#echo $EBMIN1 - -export CAFE_EPICS_V_MAJOR=$EBMAJ -export CAFE_EPICS_V_MINOR=$EBMIN -export CAFE_EPICS_V_PATCH=$EBPAT - -#ENABLE_OPTIONS+=" --enable-qt5" -##ENABLE_OPTIONS+=" --enable-qt4" -#ENABLE_OPTIONS+=" --enable-python37" -##ENABLE_OPTIONS+=" --enable-python35" -#ENABLE_OPTIONS+=" --enable-json" -#ENABLE_OPTIONS+=" --enable-zeromq" -#ENABLE_OPTIONS+=" --enable-curl" -#ENABLE_OPTIONS+=" --enable-lz4" - -echo 'ENABLE_OPTIONS='$ENABLE_OPTIONS -echo 'EPICS='${EPICS} - -./configure \ - --prefix=/opt/gfa/cafe/cpp/${CAFE_V} \ - --libdir=/opt/gfa/cafe/cpp/${CAFE_V}/lib/${EPICS_HOST_ARCH} \ - ${ENABLE_OPTIONS} \ - --with-boost-inc=/afs/psi.ch/project/cafe/gitlab/CAFE/boost/boost_1_61_0/include \ - --with-epics7=${EPICS}/base-7.0.4.1 \ - --with-epics3=${EPICS}/base \ - --with-python37=/opt/gfa/python-3.7/latest \ - --with-python35=/opt/gfa/python-3.5/latest \ - --with-python34=/opt/psi/Programming/psi-python34/2.1.0 \ - --with-qt5=/opt/gfa/python-3.7/latest \ - --with-qt4=/opt/gfa/python-3.5/latest \ - --with-json=/opt/gfa/zmsglog/json/jsoncpp-src-0.6.0-rc2 \ - --with-zeromq=/opt/gfa/zmq/zeromq-4.2.3-gcc-6.3.0 \ - --with-curl=/opt/gfa/zmq/curl-7.55.1 \ - --with-lz4=/opt/gfa/zmq/lz4/lib - -unset CAFE_EPICS_V_PATCH -unset CAFE_EPICS_V_MINOR -unset CAFE_EPICS_V_MAJOR - -unset CAFE_HOST_FLAG_DARWIN diff --git a/src/#makefile# b/src/#makefile# deleted file mode 100644 index 47a54b1..0000000 --- a/src/#makefile# +++ /dev/null @@ -1,778 +0,0 @@ -# makefile.in generated by automake 1.13.4 from makefile.am. -# src/makefile. Generated from makefile.in by configure. - -# Copyright (C) 1994-2013 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/cafe -pkgincludedir = $(includedir)/cafe -pkglibdir = $(libdir)/cafe -pkglibexecdir = $(libexecdir)/cafe -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = x86_64-unknown-linux-gnu -host_triplet = x86_64-unknown-linux-gnu -am__append_1 = PyCafe.cpp -#am__append_2 = zbsCafeService.cpp zbsDataHolders.cpp \ -# bitshuffle/bitshuffle_core.c bitshuffle/bitshuffle.c bitshuffle/iochain.c - -subdir = src -DIST_COMMON = $(srcdir)/makefile.in $(srcdir)/makefile.am \ - $(top_srcdir)/./depcomp -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ - $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ - $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/./include/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(libdir)" -LTLIBRARIES = $(lib_LTLIBRARIES) -libcafe_la_LIBADD = -am__libcafe_la_SOURCES_DIST = cafe.cpp cafeCache.cpp cafeGroup.cpp \ - cafeVectors.cpp cafeXML.cpp callbackHandlerCreate.cpp \ - callbackHandlerMonitor.cpp conduit.cpp connect.cpp \ - connectCallbacks.cpp exceptionsHelper.cpp granules.cpp \ - handleHelper.cpp loadCollectionXMLParser.cpp \ - loadGroupXMLParser.cpp methodCallbacks.cpp helper.cpp \ - policyHelper.cpp conduitGroup.cpp connectGroup.cpp \ - transpose.cpp restorePVGroupXMLParser.cpp PyCafe.cpp \ - zbsCafeService.cpp zbsDataHolders.cpp \ - bitshuffle/bitshuffle_core.c bitshuffle/bitshuffle.c \ - bitshuffle/iochain.c -am__objects_1 = PyCafe.lo -am__dirstamp = $(am__leading_dot)dirstamp -#am__objects_2 = zbsCafeService.lo zbsDataHolders.lo \ -# bitshuffle/bitshuffle_core.lo \ -# bitshuffle/bitshuffle.lo \ -# bitshuffle/iochain.lo -am_libcafe_la_OBJECTS = cafe.lo cafeCache.lo cafeGroup.lo \ - cafeVectors.lo cafeXML.lo callbackHandlerCreate.lo \ - callbackHandlerMonitor.lo conduit.lo connect.lo \ - connectCallbacks.lo exceptionsHelper.lo granules.lo \ - handleHelper.lo loadCollectionXMLParser.lo \ - loadGroupXMLParser.lo methodCallbacks.lo helper.lo \ - policyHelper.lo conduitGroup.lo connectGroup.lo transpose.lo \ - restorePVGroupXMLParser.lo $(am__objects_1) $(am__objects_2) -libcafe_la_OBJECTS = $(am_libcafe_la_OBJECTS) -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -libcafe_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libcafe_la_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(top_builddir)/./include -depcomp = $(SHELL) $(top_srcdir)/./depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -AM_V_CXX = $(am__v_CXX_$(V)) -am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) -am__v_CXX_0 = @echo " CXX " $@; -am__v_CXX_1 = -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CXXLD = $(am__v_CXXLD_$(V)) -am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CXXLD_0 = @echo " CXXLD " $@; -am__v_CXXLD_1 = -SOURCES = $(libcafe_la_SOURCES) -DIST_SOURCES = $(am__libcafe_la_SOURCES_DIST) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing aclocal-1.13 -AMTAR = $${TAR-tar} - -#if HAVE_PYCAFE_EXT_ -#libcafe_la_SOURCES += PyCafe.cpp -#endif -#else -#if HAVE_PYTHON_ -#libcafe_la_SOURCES += pycafe/PyCafe.cpp -#endif -AM_CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml -I$(top_srcdir)/include -AM_DEFAULT_VERBOSITY = 1 -AM_LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -AR = ar -AUTOCONF = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoconf -AUTOHEADER = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing autoheader -AUTOMAKE = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing automake-1.13 -AWK = gawk -CAFE_CPPFLAGS = -I$(top_srcdir)/include -CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc -CCDEPMODE = depmode=gcc3 -CFLAGS = -g -O2 -CPP = /opt/psi/Programming/gcc/7.3.0/bin/gcc -E -CPPFLAGS = -fexceptions -fPIC -std=c++1z -I/usr/local/epics/base-7.0.6/include/ -I/usr/local/epics/base-7.0.6/include/os/Linux -I/usr/local/epics/base-7.0.6/include/compiler/gcc -I/opt/gfa/cafe/boost/boost_1_61_0/include/boost -I/opt/gfa/cafe/boost/boost_1_61_0/include -I/opt/gfa/python-3.5/latest/include/python3.5m -I/opt/gfa/python-3.5/latest/lib/python3.5/site-packages/numpy/core/include -I/opt/gfa/python-3.5/latest/include -I/opt/gfa/python-3.5/latest/include/QtCore -I/opt/gfa/python-3.5/latest/include/QtXml -CXX = /opt/psi/Programming/gcc/7.3.0/bin/g++ -CXXCPP = /opt/psi/Programming/gcc/7.3.0/bin/g++ -E -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -g -O2 -CYGPATH_W = echo -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -DLLTOOL = false -DSYMUTIL = -DUMPBIN = -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = /usr/bin/grep -E -EXEEXT = -FGREP = /usr/bin/grep -F -GREP = /usr/bin/grep -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -LD = /usr/bin/ld -m elf_x86_64 -LDFLAGS = -L/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -Wl,-rpath,/usr/local/epics/base-7.0.6/lib/RHEL7-x86_64 -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -L/opt/gfa/python-3.5/latest/lib -Wl,-rpath,/opt/gfa/python-3.5/latest/lib -LIBOBJS = -LIBS = -lQtXml -lQtCore -lpython3.5m -LIBTOOL = $(SHELL) $(top_builddir)/libtool -LIPO = -LN_S = ln -s -LTLIBOBJS = -LT_SYS_LIBRARY_PATH = -MAKEINFO = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/missing makeinfo -MANIFEST_TOOL = : -MKDIR_P = /usr/bin/mkdir -p -NM = /usr/bin/nm -B -NMEDIT = -OBJDUMP = objdump -OBJEXT = o -OTOOL = -OTOOL64 = -PACKAGE = cafe -PACKAGE_BUGREPORT = Bug reports to: jan.chrin@psi.ch -PACKAGE_NAME = CAFE -PACKAGE_STRING = CAFE 1.15.1 -PACKAGE_TARNAME = cafe -PACKAGE_URL = -PACKAGE_VERSION = 1.15.1 -PATH_SEPARATOR = : -RANLIB = ranlib -SED = /usr/bin/sed -SET_MAKE = -SHELL = /bin/sh -STRIP = strip -VERSION = 1.15.1 -abs_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src -abs_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/src -abs_top_builddir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp -abs_top_srcdir = /afs/psi.ch/project/cafe/gitlab/CAFE/cpp -ac_ct_AR = ar -ac_ct_CC = /opt/psi/Programming/gcc/7.3.0/bin/gcc -ac_ct_CXX = -ac_ct_DUMPBIN = -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build = x86_64-unknown-linux-gnu -build_alias = -build_cpu = x86_64 -build_os = linux-gnu -build_vendor = unknown -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share -docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} -dvidir = ${docdir} -exec_prefix = ${prefix} -host = x86_64-unknown-linux-gnu -host_alias = -host_cpu = x86_64 -host_os = linux-gnu -host_vendor = unknown -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${datarootdir}/info -install_sh = ${SHELL} /afs/psi.ch/project/cafe/gitlab/CAFE/cpp/install-sh -libdir = /opt/gfa/cafe/cpp/cafe-1.15.1-py35-gcc-7.3.0/lib/RHEL7-x86_64 -libexecdir = ${exec_prefix}/libexec -localedir = ${datarootdir}/locale -localstatedir = ${prefix}/var -mandir = ${datarootdir}/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /opt/gfa/cafe/cpp/cafe-1.15.1-py35-gcc-7.3.0 -program_transform_name = s,x,x, -psdir = ${docdir} -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = . -sysconfdir = ${prefix}/etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = .. -lib_LTLIBRARIES = libcafe.la - -#10:2:9 11:2:10 12:0:11 12:1:11 13.0.12 13.1.12 13:2:12 13.4.12 -#current:revision:age -#maps in soname to: -#1st: current-age -#2nd: age -#3rd: revision -#1.9.1 1.10.2 1.11.0 1.11.1 1.12.0 1.12.1 1.12.2 1.12.4 -libcafe_la_LDFLAGS = -version-info 16:1:15 -libcafe_la_SOURCES = cafe.cpp cafeCache.cpp cafeGroup.cpp \ - cafeVectors.cpp cafeXML.cpp callbackHandlerCreate.cpp \ - callbackHandlerMonitor.cpp conduit.cpp connect.cpp \ - connectCallbacks.cpp exceptionsHelper.cpp granules.cpp \ - handleHelper.cpp loadCollectionXMLParser.cpp \ - loadGroupXMLParser.cpp methodCallbacks.cpp helper.cpp \ - policyHelper.cpp conduitGroup.cpp connectGroup.cpp \ - transpose.cpp restorePVGroupXMLParser.cpp $(am__append_1) \ - $(am__append_2) -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .cpp .lo .o .obj -$(srcdir)/makefile.in: $(srcdir)/makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/makefile -.PRECIOUS: makefile -makefile: $(srcdir)/makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ - } - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } -bitshuffle/$(am__dirstamp): - @$(MKDIR_P) bitshuffle - @: > bitshuffle/$(am__dirstamp) -bitshuffle/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) bitshuffle/$(DEPDIR) - @: > bitshuffle/$(DEPDIR)/$(am__dirstamp) -bitshuffle/bitshuffle_core.lo: bitshuffle/$(am__dirstamp) \ - bitshuffle/$(DEPDIR)/$(am__dirstamp) -bitshuffle/bitshuffle.lo: bitshuffle/$(am__dirstamp) \ - bitshuffle/$(DEPDIR)/$(am__dirstamp) -bitshuffle/iochain.lo: bitshuffle/$(am__dirstamp) \ - bitshuffle/$(DEPDIR)/$(am__dirstamp) - -libcafe.la: $(libcafe_la_OBJECTS) $(libcafe_la_DEPENDENCIES) $(EXTRA_libcafe_la_DEPENDENCIES) - $(AM_V_CXXLD)$(libcafe_la_LINK) -rpath $(libdir) $(libcafe_la_OBJECTS) $(libcafe_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -rm -f bitshuffle/*.$(OBJEXT) - -rm -f bitshuffle/*.lo - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/PyCafe.Plo -include ./$(DEPDIR)/cafe.Plo -include ./$(DEPDIR)/cafeCache.Plo -include ./$(DEPDIR)/cafeGroup.Plo -include ./$(DEPDIR)/cafeVectors.Plo -include ./$(DEPDIR)/cafeXML.Plo -include ./$(DEPDIR)/callbackHandlerCreate.Plo -include ./$(DEPDIR)/callbackHandlerMonitor.Plo -include ./$(DEPDIR)/conduit.Plo -include ./$(DEPDIR)/conduitGroup.Plo -include ./$(DEPDIR)/connect.Plo -include ./$(DEPDIR)/connectCallbacks.Plo -include ./$(DEPDIR)/connectGroup.Plo -include ./$(DEPDIR)/exceptionsHelper.Plo -include ./$(DEPDIR)/granules.Plo -include ./$(DEPDIR)/handleHelper.Plo -include ./$(DEPDIR)/helper.Plo -include ./$(DEPDIR)/loadCollectionXMLParser.Plo -include ./$(DEPDIR)/loadGroupXMLParser.Plo -include ./$(DEPDIR)/methodCallbacks.Plo -include ./$(DEPDIR)/policyHelper.Plo -include ./$(DEPDIR)/restorePVGroupXMLParser.Plo -include ./$(DEPDIR)/transpose.Plo -include ./$(DEPDIR)/zbsCafeService.Plo -include ./$(DEPDIR)/zbsDataHolders.Plo -include bitshuffle/$(DEPDIR)/bitshuffle.Plo -include bitshuffle/$(DEPDIR)/bitshuffle_core.Plo -include bitshuffle/$(DEPDIR)/iochain.Plo - -.c.o: - $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ - $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - $(am__mv) $$depbase.Tpo $$depbase.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ $< - -.c.obj: - $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ - $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ - $(am__mv) $$depbase.Tpo $$depbase.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.c.lo: - $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ - $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - $(am__mv) $$depbase.Tpo $$depbase.Plo -# $(AM_V_CC)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ -# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< - -.cpp.o: - $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ - $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - $(am__mv) $$depbase.Tpo $$depbase.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: - $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ - $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ - $(am__mv) $$depbase.Tpo $$depbase.Po -# $(AM_V_CXX)source='$<' object='$@' libtool=no \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cpp.lo: - $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ - $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ - $(am__mv) $$depbase.Tpo $$depbase.Plo -# $(AM_V_CXX)source='$<' object='$@' libtool=yes \ -# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \ -# $(AM_V_CXX_no)$(LTCXXCOMPILE) -c -o $@ $< - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -rm -rf bitshuffle/.libs bitshuffle/_libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -rm -f bitshuffle/$(DEPDIR)/$(am__dirstamp) - -rm -f bitshuffle/$(am__dirstamp) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) bitshuffle/$(DEPDIR) - -rm -f makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: install-libLTLIBRARIES - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) bitshuffle/$(DEPDIR) - -rm -f makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-libLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \ - ctags-am distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-libLTLIBRARIES install-man install-pdf \ - install-pdf-am install-ps install-ps-am install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am uninstall-libLTLIBRARIES - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/bitshuffle/.libs/bitshuffle.o b/src/bitshuffle/.libs/bitshuffle.o deleted file mode 100644 index 36e6571..0000000 Binary files a/src/bitshuffle/.libs/bitshuffle.o and /dev/null differ diff --git a/src/bitshuffle/.libs/bitshuffle_core.o b/src/bitshuffle/.libs/bitshuffle_core.o deleted file mode 100644 index 66f07ba..0000000 Binary files a/src/bitshuffle/.libs/bitshuffle_core.o and /dev/null differ diff --git a/src/bitshuffle/.libs/iochain.o b/src/bitshuffle/.libs/iochain.o deleted file mode 100644 index d4722fb..0000000 Binary files a/src/bitshuffle/.libs/iochain.o and /dev/null differ diff --git a/src/bitshuffle/bitshuffle.lo b/src/bitshuffle/bitshuffle.lo deleted file mode 100644 index 1c78f1c..0000000 --- a/src/bitshuffle/bitshuffle.lo +++ /dev/null @@ -1,12 +0,0 @@ -# bitshuffle/bitshuffle.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/bitshuffle.o' - -# Name of the non-PIC object -non_pic_object='bitshuffle.o' - diff --git a/src/bitshuffle/bitshuffle.o b/src/bitshuffle/bitshuffle.o deleted file mode 100644 index 36e6571..0000000 Binary files a/src/bitshuffle/bitshuffle.o and /dev/null differ diff --git a/src/bitshuffle/bitshuffle_core.lo b/src/bitshuffle/bitshuffle_core.lo deleted file mode 100644 index db5c2e1..0000000 --- a/src/bitshuffle/bitshuffle_core.lo +++ /dev/null @@ -1,12 +0,0 @@ -# bitshuffle/bitshuffle_core.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/bitshuffle_core.o' - -# Name of the non-PIC object -non_pic_object='bitshuffle_core.o' - diff --git a/src/bitshuffle/bitshuffle_core.o b/src/bitshuffle/bitshuffle_core.o deleted file mode 100644 index 66f07ba..0000000 Binary files a/src/bitshuffle/bitshuffle_core.o and /dev/null differ diff --git a/src/bitshuffle/iochain.lo b/src/bitshuffle/iochain.lo deleted file mode 100644 index d2f9104..0000000 --- a/src/bitshuffle/iochain.lo +++ /dev/null @@ -1,12 +0,0 @@ -# bitshuffle/iochain.lo - a libtool object file -# Generated by libtool (GNU libtool) 2.4.6 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# Name of the PIC object. -pic_object='.libs/iochain.o' - -# Name of the non-PIC object -non_pic_object='iochain.o' - diff --git a/src/bitshuffle/iochain.o b/src/bitshuffle/iochain.o deleted file mode 100644 index d4722fb..0000000 Binary files a/src/bitshuffle/iochain.o and /dev/null differ