14 lines
338 B
Bash
Executable File
14 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for compilation (at least for error catching)
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
set -x
|
|
|
|
if [ -d "${FASTDUALOCTREE_SRC_PATH}" ]
|
|
then
|
|
wmake $targetType
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|