Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
b50d7d78
Commit
b50d7d78
authored
8 years ago
by
Henry Weller
Browse files
Options
Downloads
Patches
Plain Diff
wmake: Removed unnecessary '->>' line from output
Changed 'ld' line to include path of target library or executable.
parent
82faf7ef
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wmake/makefiles/general
+9
-14
9 additions, 14 deletions
wmake/makefiles/general
with
9 additions
and
14 deletions
wmake/makefiles/general
+
9
−
14
View file @
b50d7d78
...
...
@@ -128,27 +128,25 @@ LIB_HEADER_DIRS = \
# Define link statements for executables
#------------------------------------------------------------------------------
.PHONY
:
silent
silent
:
@
:
$(EXE)
:
$(OBJECTS)
@$(
WM_SCRIPTS
)
/makeTargetDir
$(
EXE
)
$(
call QUIET_MESSAGE,ld,
$(
notdir
$(
EXE
))
)
$(
call QUIET_MESSAGE,ld,
$(
EXE
))
$E
$(
LINKEXE
)
$(
OBJECTS
)
-L
$(
LIB_PLATFORMS
)
\
$(
EXE_LIBS
)
$(
PROJECT_LIBS
)
$(
SYS_LIBS
)
\
$(
LINK_LIBS
)
$(
GLIBS
)
-o
$(
EXE
)
@
echo
" ->>
$(
EXE
)
"
.PHONY
:
silent
silent
:
@
:
.PHONY
:
exe
exe
:
$(SEXE) | silent
$(SEXE)
:
$(OBJECTS)
@$(
WM_SCRIPTS
)
/makeTargetDir
$(
SEXE
)
$(
call QUIET_MESSAGE,ld,
$(
notdir
$(
SEXE
))
)
$(
call QUIET_MESSAGE,ld,
$(
SEXE
))
$E
$(
LINKEXE
)
$(
OBJECTS
)
$(
EXE_LIBS
)
\
$(
SYS_LIBS
)
$(
LINK_LIBS
)
$(
GLIBS
)
-o
$(
SEXE
)
@
echo
" ->>
$(
SEXE
)
"
#------------------------------------------------------------------------------
...
...
@@ -163,10 +161,9 @@ libso: $(LIB).$(SO) | silent
$(LIB).$(SO)
:
$(OBJECTS)
@$(
WM_SCRIPTS
)
/makeTargetDir
$(
LIB
)
$(
call QUIET_MESSAGE,ld,
$(
notdir
$(
LIB
)
)
.
$(
SO
))
$(
call QUIET_MESSAGE,ld,
$(
LIB
)
.
$(
SO
))
$E
$(
LINKLIBSO
)
$(
OBJECTS
)
-L
$(
LIB_PLATFORMS
)
\
$(
LIB_LIBS
)
$(
GLIB_LIBS
)
-o
$(
LIB
)
.
$(
SO
)
@
echo
" ->>
$(
LIB
)
.
$(
SO
)
"
.PHONY
:
lib
lib
:
$(LIB).a | silent
...
...
@@ -174,11 +171,10 @@ lib: $(LIB).a | silent
$(LIB).a
:
$(OBJECTS)
@$(
WM_SCRIPTS
)
/makeTargetDir
$(
LIB
)
@
rm
-f
$(
LIB
)
.a
$(
call QUIET_MESSAGE,ar,
$(
notdir
$(
LIB
))
)
$(
call QUIET_MESSAGE,ar,
$(
LIB
))
$E
$(
AR
)
$(
ARFLAGS
)
$(
LIB
)
.a
$(
OBJECTS
)
$(
call QUIET_MESSAGE,ranlib,
$(
notdir
$(
LIB
)))
$E
$(
RANLIB
)
$(
LIB
)
.a
@
echo
" ->>
$(
LIB
)
.a"
.PHONY
:
libo
libo
:
$(LIB).o | silent
...
...
@@ -186,9 +182,8 @@ libo: $(LIB).o | silent
$(LIB).o
:
$(OBJECTS)
@$(
WM_SCRIPTS
)
/makeTargetDir
$(
LIB
)
@
rm
-f
$(
LIB
)
.o
$(
call QUIET_MESSAGE,ld,
$(
notdir
$(
LIB
)
)
.o
)
$(
call QUIET_MESSAGE,ld,
$(
LIB
)
.o
)
$E
$(
LD
)
-r
-o
$(
LIB
)
.o
$(
OBJECTS
)
@
echo
" ->>
$(
LIB
)
.o"
#------------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment