diff --git a/src/tools/os/WIN32/getrel b/src/tools/os/WIN32/getrel deleted file mode 100644 index 0ea91ea4b..000000000 --- a/src/tools/os/WIN32/getrel +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -# -# $Id$ -# -# simplified WIN32 version 7/25/96 -kuk- -# -# Author: Matthew Needes -# - -# one arg -if [ $# -ne 1 ]; then - echo 'Usage:' - echo ' getrel ' - echo ' ' - echo 'ex: getrel /usr/local/epics/base_R3.13' - echo ' --------- OR -----------' - echo ' getrel ~/epics/base ' - - exit -fi - -BASE=${1} -BIN=${BASE}/bin -DBD=${BASE}/dbd - -if [ ! -d ${BIN} -o ! -d ${DBD} ] -then - echo "getrel: ${BASE} does not appear to be an epics BASE root tree" - echo " I cannot locate a /bin or /dbd directory in there" - - exit 1 -fi - -echo EPICS_BASE=${BASE} > EPICS_BASE - -echo ${BASE} - `date` >> .current_rel_hist - -exit 0 diff --git a/src/tools/os/WIN32/makeBaseApp b/src/tools/os/WIN32/makeBaseApp deleted file mode 100644 index 7d41201d7..000000000 --- a/src/tools/os/WIN32/makeBaseApp +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# -# iocMakeApp -# -# Author: Marty Kraimer -# - - -echo "makeBaseApp is not yet ported to WIN32" -exit 2 diff --git a/src/tools/os/WIN32/testmkdir b/src/tools/os/WIN32/testmkdir deleted file mode 100644 index 9e9283236..000000000 --- a/src/tools/os/WIN32/testmkdir +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# - -if [ $# -ne 1 ] -then - echo "USAGE:" - echo "$0 dirname" - echo 'Function: if dirname does not exist, create it.' - exit 2 -fi - -DIR=$1 - -test -d ${DIR} || mkdir ${DIR}