Skip to content
Snippets Groups Projects
Commit caa74eee authored by Henry's avatar Henry
Browse files

wmake: Change default behaviour to check the Make/files file for a LIB entry...

wmake: Change default behaviour to check the Make/files file for a LIB entry and compile libso if appropriate
parent 876beee7
Branches
Tags
No related merge requests found
......@@ -3,7 +3,7 @@
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
# \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
# \\/ M anipulation |
#-------------------------------------------------------------------------------
# License
......@@ -202,9 +202,9 @@ fi
exit 1
}
# transform "all" option to "libso" if that looks appropriate or remove it
# transform "all" or no option to "libso" if that looks appropriate or remove it
# so that the call to make builds the application
if [ "$makeType" = all ]
if [ "$makeType" = all -o "$makeType" = "" ]
then
unset makeType
if grep -e '^ *LIB *=' "$MakeDir/files" >/dev/null 2>&1
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment