mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
25 lines
582 B
Bash
Executable File
25 lines
582 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for library compilation
|
|
targetType=libo
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments $*
|
|
|
|
unset COMP_FLAGS LINK_FLAGS
|
|
|
|
#
|
|
# use <sys/inotify.h> if available (Linux)
|
|
#
|
|
if [ -f /usr/include/sys/inotify.h ]
|
|
then
|
|
echo "Found <sys/inotify.h> -- enabling inotify for file monitoring."
|
|
export COMP_FLAGS="-DFOAM_USE_INOTIFY"
|
|
else
|
|
unset COMP_FLAGS
|
|
fi
|
|
|
|
# make (non-shared by default) object
|
|
wmake $targetType
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|