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
darshan
darshan
Commits
feff6be8
Commit
feff6be8
authored
May 07, 2021
by
Shane Snyder
Browse files
make targets for pydarshan autoperf modules
parent
21362b6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-util/pydarshan/Makefile
View file @
feff6be8
.PHONY
:
clean clean-test clean-pyc clean-build docs help
clean
:
clean-build clean-docs clean-pyc clean-test
#
remove all build
,
test
,
coverage and Python artifacts
clean
:
clean-build clean-docs clean-pyc clean-test
clean-modules
#
remove all build
,
test
,
coverage and Python artifacts
clean-build
:
#
remove build artifacts
rm
-rf
build/
...
...
@@ -37,6 +37,10 @@ clean-devenv:
rm
-rf
devenv/libdarshanutil
rm
-rf
devenv
clean-modules
:
for
file
in
`
find ../../modules/
-name
"*backend.py"
`
;
do
\
rm
-rf
darshan/backend/
`
basename
$$
file |
cut
-d
'-'
-f
1
`
.py
;
\
done
devenv
:
./devel/build-libdarshanutil.sh
...
...
@@ -66,6 +70,12 @@ docs: clean-docs # generate Sphinx HTML documentation, including API docs
docs-show
:
xdg-open docs/build/html/index.html
# add AutoPef Python packages...
add-modules
:
for
file
in
`
find ../../modules/
-name
"*-backend.py"
`
;
do
\
cp
$$
file darshan/backend/
`
basename
$$
file |
cut
-d
'-'
-f
1
`
.py
;
\
done
wheels
:
./devel/build-all.sh
...
...
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