summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-29 21:50:23 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-29 21:50:23 +0100
commitc78ab3cbeb072f0efa2824cb39bfad5e76d53874 (patch)
treea4377f7117e61fe378370fa1dcf6695723e034d0 /run
parent944cee945a1f923614783471d472db0896f6877a (diff)
Remove some old run/ scripts. Make server test build again.
Diffstat (limited to 'run')
-rwxr-xr-xrun/alignomatic10
-rwxr-xr-xrun/dvdomatic-osx15
-rwxr-xr-xrun/makedcp-osx15
-rwxr-xr-xrun/playomatic10
-rwxr-xr-xrun/servomatictest12
5 files changed, 0 insertions, 62 deletions
diff --git a/run/alignomatic b/run/alignomatic
deleted file mode 100755
index 9cc8c2245..000000000
--- a/run/alignomatic
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-export LD_LIBRARY_PATH=build/src/lib:build/src/gtk:$LD_LIBRARY_PATH
-if [ "$1" == "--debug" ]; then
- gdb --args build/src/tools/alignomatic $2
-elif [ "$1" == "--valgrind" ]; then
- valgrind --tool="memcheck" build/src/tools/alignomatic $2
-else
- build/src/tools/alignomatic "$1"
-fi
diff --git a/run/dvdomatic-osx b/run/dvdomatic-osx
deleted file mode 100755
index 8fef27fec..000000000
--- a/run/dvdomatic-osx
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:build/src/lib:build/src:/Users/carl/Environments/osx/64/lib
-if [ "$1" == "--debug" ]; then
- shift
- gdb --args build/src/tools/dvdomatic "$*"
-elif [ "$1" == "--valgrind" ]; then
- shift
- valgrind --tool="memcheck" build/src/tools/dvdomatic $*
-elif [ "$1" == "--i18n" ]; then
- shift
- LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 build/src/tools/dvdomatic "$*"
-else
- build/src/tools/dvdomatic "$*"
-fi
diff --git a/run/makedcp-osx b/run/makedcp-osx
deleted file mode 100755
index 03756f524..000000000
--- a/run/makedcp-osx
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:build/src/lib:build/src:/Users/carl/Environments/osx/64/lib
-if [ "$1" == "--debug" ]; then
- shift
- gdb --args build/src/tools/makedcp "$@"
-elif [ "$1" == "--memcheck" ]; then
- shift
- valgrind --tool="memcheck" --leak-check=full --show-reachable=yes build/src/tools/makedcp "$@"
-elif [ "$1" == "--massif" ]; then
- shift
- valgrind --tool="massif" build/src/tools/makedcp "$@"
-else
- build/src/tools/makedcp "$@"
-fi
diff --git a/run/playomatic b/run/playomatic
deleted file mode 100755
index 9fe191a51..000000000
--- a/run/playomatic
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-export LD_LIBRARY_PATH=build/src/lib:build/src/gtk:$LD_LIBRARY_PATH
-if [ "$1" == "--debug" ]; then
- gdb --args build/src/tools/playomatic $2
-elif [ "$1" == "--valgrind" ]; then
- valgrind --tool="memcheck" build/src/tools/playomatic $2
-else
- build/src/tools/playomatic "$1"
-fi
diff --git a/run/servomatictest b/run/servomatictest
deleted file mode 100755
index 58cea8815..000000000
--- a/run/servomatictest
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH
-if [ "$1" == "--debug" ]; then
- shift
- gdb --args build/src/tools/servomatictest $*
-elif [ "$1" == "--valgrind" ]; then
- shift
- valgrind --tool="memcheck" build/src/tools/servomatictest $*
-else
- build/src/tools/servomatictest $*
-fi