Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MSA Hello World
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Andreas Herten
MSA Hello World
Merge requests
!1
add 01 MSA hello-world
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add 01 MSA hello-world
sa-hello-world
into
main
Overview
5
Commits
4
Pipelines
0
Changes
6
1 unresolved thread
Hide all comments
Merged
Sebastian Achilles
requested to merge
sa-hello-world
into
main
2 years ago
Overview
5
Commits
4
Pipelines
0
Changes
6
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
main
version 3
3b1335b3
1 year ago
version 2
74db8fc4
2 years ago
version 1
43074e9c
2 years ago
main (base)
and
latest version
latest version
3a52f098
4 commits,
1 year ago
version 3
3b1335b3
3 commits,
1 year ago
version 2
74db8fc4
2 commits,
2 years ago
version 1
43074e9c
1 commit,
2 years ago
6 files
+
100
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
01-MSA-hello-world/Makefile
0 → 100644
+
14
−
0
Options
SYS
:=
none
_SYS
=
$(
addprefix .,
$(
SYS
))
MPICC
=
mpicc
EXECS
=
mpi_hello_world
$(
_SYS
)
.out
.PHONY
:
all clean
all
:
${EXECS}
mpi_hello_world$(_SYS).out
:
mpi_hello_world.c
${
MPICC
}
-o
$@
$<
clean
:
rm
${
EXECS
}
*
.out
||
true
Loading