Skip to content
Snippets Groups Projects
Commit 450c697d authored by sveseli's avatar sveseli
Browse files

reorganized support build to allow separating daq vs storage

parent 5f900700
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,9 @@ prepare-dev-env: support db dev-config
support:
$(TOP)/sbin/dm_install_support.sh
support-daq:
$(TOP)/sbin/dm_install_support.sh daq
dev-config:
$(TOP)/sbin/dm_prepare_dev_config.sh
......
#!/bin/sh
# Invoke this script either with "all" or "daq" arguments.
usage() {
echo "Usage: $0 all|daq"
}
DM_SVN_URL=https://subversion.xray.aps.anl.gov/DataManagement
supportType=all
if [ ! -z "$1" ]; then
supportType=$1
fi
if [ $supportType != "all" -a $supportType != "daq" ]; then
usage
exit 1
fi
MY_DIR=`dirname $0` && cd $MY_DIR && MY_DIR=`pwd`
if [ -z "${DM_ROOT_DIR}" ]; then
DM_ROOT_DIR=$MY_DIR/..
......@@ -21,8 +36,8 @@ if [ ! -d $DM_SUPPORT_DIR ]; then
fi
cd $DM_SUPPORT_DIR
execute svn update
execute $DM_SUPPORT_DIR/bin/clean_all.sh
execute $DM_SUPPORT_DIR/bin/install_all.sh
execute $DM_SUPPORT_DIR/bin/clean_support_all.sh
execute $DM_SUPPORT_DIR/bin/install_support_${supportType}.sh
if [ ! -d $DM_DATA_DIR ]; then
echo "Creating data directory"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment