Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_pdata
Commits
99e10c70
Commit
99e10c70
authored
Dec 29, 2015
by
Pietro Incardona
Browse files
Fixing examples + and gitignore
parent
2b731e45
Changes
2
Hide whitespace changes
Inline
Side-by-side
example/VCluster/0_simple/Makefile
0 → 100644
View file @
99e10c70
include
../../example.mk
CC
=
mpic++
LDIR
=
OBJ
=
main.o
%.o
:
%.cpp
$(CC)
-O3
-c
--std
=
c++11
-o
$@
$<
$(INCLUDE_PATH)
vcluster
:
$(OBJ)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
all
:
vcluster
.PHONY
:
clean all
clean
:
rm
-f
*
.o
*
~ core vcluster
example/VCluster/Makefile
0 → 100644
View file @
99e10c70
SUBDIRS
:=
$(
wildcard
*
/.
)
all clean
:
for
dir
in
$(SUBDIRS)
;
do
\
$(MAKE)
-C
$$
dir
$@
;
\
done
clean
:
$(SUBDIRS)
.PHONY
:
all clean $(SUBDIRS)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment