makeclean 943 Bytes
Newer Older
1 2 3 4
#! /bin/sh
# Remove built object files and test executables
#
# Written by Ewen McNeill <ewen@imatix.com>, 2014-07-22
5
# Updated by Ewen McNeill <ewen@imatix.com>, 2014-07-24
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#---------------------------------------------------------------------------

set -e    # Stop on errors

# Figure out where we are
BIN_DIR=$(dirname $0)
if [ -z "${BIN_DIR}" ]; then BIN_DIR="."; fi
case "${BIN_DIR}" in
  .)  BIN_DIR="$(pwd)";            ;;
  /*)                              ;; 
  *)  BIN_DIR="$(pwd)/${BIN_DIR}"; ;;
esac

# Locate top of source tree, assuming we're in builds/zos
TOP="${BIN_DIR}/../.."
SRC="${TOP}/src"
TESTS="${TOP}/tests"

# Remove object/library files
echo "Removing libzmq built files"
26
(cd "${SRC}" && rm -f *.o *.a *.dbg *.x *.so libzmq)
27 28 29 30 31 32 33 34 35 36

# Remove test object files
echo "Removing libzmq tests"
(cd "${TESTS}" && rm -f *.o *.dbg)
(cd "${TESTS}"; 
 EXES=$(ls test_* | grep -v "\.")
 if [ -n "${EXES}" ]; then
   rm ${EXES}
 fi
)