Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
199f3a24
Commit
199f3a24
authored
Mar 16, 2015
by
Mikaël Salson
Browse files
Makefile: Solve issue with spaces in path
The dir function was considering spaces as separator, which is bad.
parent
4350b797
Changes
1
Hide whitespace changes
Inline
Side-by-side
algo/tests/Makefile
View file @
199f3a24
...
...
@@ -10,7 +10,7 @@ LIB=../core/vidjil.a ../lib/lib.a
SHOULD
=
$(
wildcard
*
.should_get
)
SHOULD_LOG
=
$(SHOULD:.should_get=.tap)
SHOULD_VDJ
=
$(
wildcard
should-vdj-tests/
*
.should-vdj.fa
)
REPORTS_PATH
:=
$(
dir
$(
abspath
$(
lastword
$(MAKEFILE_LIST)
)))
/../../reports
REPORTS_PATH
:=
$(
patsubst
%/Makefile,%,
$(
abspath
$(
lastword
$(MAKEFILE_LIST)
)))
/../../reports
VALGRIND
=
valgrind
-v
--tool
=
memcheck
--leak-check
=
full
--show-reachable
=
yes
--undef-value-errors
=
yes
--track-origins
=
yes
--xml
=
yes
--xml-file
=
\"
$$
(
mktemp
"
$(REPORTS_PATH)
/valgrind.xml.XXXXXX"
)
\"
.PHONY
:
all force clean forcedep
...
...
Write
Preview
Supports
Markdown
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