#!/bin/bash
# This script will build expat. 
# It will also copy the header files and the library to the current directory
# in a Vatics conventional way, i.e., ./lib and ./src. 
PATH=/usr/bin:/bin:$PATH
APP_NAME=tinysmbd
VERSION=1.08

PACKAGE_DIR=TinySmb

[ -d "$PACKAGE_DIR" ] || exit 1

cd $PACKAGE_DIR

# simply make it
make --quiet clean

cd - > /dev/null

rm -rf ${APP_NAME}

