Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plumed AlphaFold
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Martin Kurečka
Plumed AlphaFold
Commits
dee8d8b0
There was an error fetching the commit references. Please try again later.
Commit
dee8d8b0
authored
11 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Patches
Plain Diff
Speed up for other Makefiles
Using := syntax
parent
298fd24d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+3
-3
3 additions, 3 deletions
Makefile
src/Makefile
+2
-2
2 additions, 2 deletions
src/Makefile
src/lib/Makefile
+17
-17
17 additions, 17 deletions
src/lib/Makefile
with
22 additions
and
22 deletions
Makefile
+
3
−
3
View file @
dee8d8b0
-include
Makefile.conf
SRCDIRS
=
src
test
SUBDIRS
=
$(
SRCDIRS
)
user-doc developer-doc regtest
SRCDIRS
:
=
src
test
SUBDIRS
:
=
$(
SRCDIRS
)
user-doc developer-doc regtest
SUBDIRSCLEAN
=
$(
addsuffix .clean,
$(
SUBDIRS
))
SUBDIRSCLEAN
:
=
$(
addsuffix .clean,
$(
SUBDIRS
))
.PHONY
:
all lib clean $(SRCDIRS) doc docclean check
...
...
This diff is collapsed.
Click to expand it.
src/Makefile
+
2
−
2
View file @
dee8d8b0
...
...
@@ -14,8 +14,8 @@ uninstall:
$(
MAKE
)
-C
lib uninstall
# list of all the contained directories which can be cleaned
SUBDIRS
=
$(
subst /Makefile,,
$(
wildcard
*
/Makefile
))
SUBDIRSCLEAN
=
$(
addsuffix .clean,
$(
SUBDIRS
))
SUBDIRS
:
=
$(
subst /Makefile,,
$(
wildcard
*
/Makefile
))
SUBDIRSCLEAN
:
=
$(
addsuffix .clean,
$(
SUBDIRS
))
.PHONY
:
$(SUBDIRS)
# this is cleaning all subdirectories
...
...
This diff is collapsed.
Click to expand it.
src/lib/Makefile
+
17
−
17
View file @
dee8d8b0
# here we build the list of modules to be linked in plumedKernel
KERNEL_MODULES
=
$(
addprefix ../,
$(
shell ../maketools/find_modules.sh
))
KERNEL_MODULES
:=
$(
addprefix ../,
$(
shell ../maketools/find_modules.sh
))
# This adds modules which are built anyway and linked with some ad hoc procedure
DIRS
=
$(
sort
../config ../wrapper ../main
$(
KERNEL_MODULES
))
DIRS
:=
$(
sort
../config ../wrapper ../main
$(
KERNEL_MODULES
))
# include the machine dependent configuration
...
...
@@ -26,31 +26,31 @@ SRC_MAIN=../main/main.cpp
# source for plumed kernel
# everything else
SRC_KERNEL
=
$(
shell
for
dir
in
$(
KERNEL_MODULES
)
;
do
ls
$$
dir
/
*
.cpp 2>/dev/null
;
ls
$$
dir
/
*
.c 2>/dev/null
;
done
)
../config/Config
$(
PLUMED_INSTALL
)
.o
SRC_KERNEL
:=
$(
shell
for
dir
in
$(
KERNEL_MODULES
)
;
do
ls
$$
dir
/
*
.cpp 2>/dev/null
;
ls
$$
dir
/
*
.c 2>/dev/null
;
done
)
../config/Config
$(
PLUMED_INSTALL
)
.o
# corresponding objects:
OBJ_WRAPPER
=
../wrapper/PlumedStatic.o
OBJ_DYNAMIC_WRAPPER
=
../wrapper/Plumed.o
OBJ_MAIN
=
$(
SRC_MAIN:.cpp
=
.o
)
XXX
=
$(
SRC_KERNEL:.cpp
=
.o
)
OBJ_KERNEL
=
$(
XXX:.c
=
.o
)
ALL_OBJ
=
$(
OBJ_KERNEL
)
$(
OBJ_WRAPPER
)
$(
OBJ_DYNAMIC_WRAPPER
)
$(
OBJ_MAIN
)
OBJ_WRAPPER
:=
../wrapper/PlumedStatic.o
OBJ_DYNAMIC_WRAPPER
:=
../wrapper/Plumed.o
OBJ_MAIN
:=
$(
SRC_MAIN:.cpp
=
.o
)
XXX
:=
$(
SRC_KERNEL:.cpp
=
.o
)
OBJ_KERNEL
:=
$(
XXX:.c
=
.o
)
ALL_OBJ
:=
$(
OBJ_KERNEL
)
$(
OBJ_WRAPPER
)
$(
OBJ_DYNAMIC_WRAPPER
)
$(
OBJ_MAIN
)
# plumed kernel
PLUMED_KERNEL
=
$(
PLUMED_LIBDIR
)
libplumedKernel.
$(
SOEXT
)
PLUMED_KERNEL
:=
$(
PLUMED_LIBDIR
)
libplumedKernel.
$(
SOEXT
)
# plumed library (kernel + wrapper)
PLUMED_SHARED_OBJ
=
$(
PLUMED_LIBDIR
)
libplumed.
$(
SOEXT
)
PLUMED_SHARED_OBJ
:=
$(
PLUMED_LIBDIR
)
libplumed.
$(
SOEXT
)
# plumed scripts
PLUMED_SCRIPTS_SH
=
$(
shell
cd
../../scripts/
;
ls
*
.sh 2>/dev/null
)
PLUMED_SCRIPTS
=
$(
PLUMED_SCRIPTS_SH:.sh
=
)
PLUMED_SCRIPTS_EXE
=
$(
addprefix
$(
PLUMED_LIBDIR
)
plumed-,
$(
PLUMED_SCRIPTS
))
PLUMED_SCRIPTS_SH
:=
$(
shell
cd
../../scripts/
;
ls
*
.sh 2>/dev/null
)
PLUMED_SCRIPTS
:=
$(
PLUMED_SCRIPTS_SH:.sh
=
)
PLUMED_SCRIPTS_EXE
:=
$(
addprefix
$(
PLUMED_LIBDIR
)
plumed-,
$(
PLUMED_SCRIPTS
))
# plumed main exec
PLUMED_MAIN_STATIC
=
$(
PLUMED_LIBDIR
)
plumed
PLUMED_MAIN_SHARED
=
$(
PLUMED_LIBDIR
)
plumed-shared
PLUMED_MAIN_RUNTIME
=
$(
PLUMED_LIBDIR
)
plumed-runtime
PLUMED_MAIN_STATIC
:=
$(
PLUMED_LIBDIR
)
plumed
PLUMED_MAIN_SHARED
:=
$(
PLUMED_LIBDIR
)
plumed-shared
PLUMED_MAIN_RUNTIME
:=
$(
PLUMED_LIBDIR
)
plumed-runtime
.PHONY
:
all dirs $(DIRS) all-static
ifdef
SOEXT
...
...
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