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
west-public
West
Commits
6c56aa42
Commit
6c56aa42
authored
Apr 30, 2017
by
Marco Govoni
Browse files
Missing commit.
parent
c96ec563
Changes
4
Hide whitespace changes
Inline
Side-by-side
Libraries/Json/Makefile
View file @
6c56aa42
...
...
@@ -40,4 +40,3 @@ title :
@
echo
"##############"
@
echo
" "
include
make.depend
Libraries/Makefile
View file @
6c56aa42
...
...
@@ -2,18 +2,28 @@
default
:
all
all
:
json_do
all
:
title
json_do
json_do
:
if
test
-d
Json
;
then
\
(
cd
Json
;
if
test
"
$(MAKE)
"
=
""
;
then
make
$(MFLAGS)
all
;
\
else
$(MAKE)
$(MFLAGS)
all
;
fi
)
;
fi
clean
:
json_undo
clean
:
json_undo
rmlib
json_undo
:
if
test
-d
Json
;
then
\
(
cd
Json
;
if
test
"
$(MAKE)
"
=
""
;
then
make clean
;
\
else
$(MAKE)
clean
;
fi
)
;
fi
rmlib
:
/bin/rm
-f
libjson.a
distclean
:
clean
title
:
@
echo
" "
@
echo
"##############"
@
echo
"## Libraries #"
@
echo
"##############"
@
echo
" "
Libraries/libjson.a
deleted
100644 → 0
View file @
c96ec563
File deleted
Makefile
View file @
6c56aa42
...
...
@@ -2,7 +2,9 @@
default
:
all
all
:
modules_do
\
all
:
\
libraries_do
\
modules_do
\
tools_do
\
fft_kernel_do
\
coulomb_kernel_do
\
...
...
@@ -15,6 +17,11 @@ wfreq_do \
westpp_do
libraries_do
:
if
test
-d
Libraries
;
then
\
(
cd
Libraries
;
if
test
"
$(MAKE)
"
=
""
;
then
make
$(MFLAGS)
all
;
\
else
$(MAKE)
$(MFLAGS)
all
;
fi
)
;
fi
modules_do
:
if
test
-d
Modules
;
then
\
(
cd
Modules
;
sh update_west_version
;
if
test
"
$(MAKE)
"
=
""
;
then
make
$(MFLAGS)
all
;
\
...
...
@@ -70,7 +77,9 @@ westpp_do:
(
cd
Westpp
;
if
test
"
$(MAKE)
"
=
""
;
then
make
$(MFLAGS)
all
;
\
else
$(MAKE)
$(MFLAGS)
all
;
fi
)
;
fi
clean
:
modules_undo
\
clean
:
\
libraries_undo
\
modules_undo
\
tools_undo
\
fft_kernel_undo
\
coulomb_kernel_undo
\
...
...
@@ -82,6 +91,11 @@ wstat_undo \
wfreq_undo
\
westpp_undo
libraries_undo
:
if
test
-d
Libraries
;
then
\
(
cd
Libraries
;
if
test
"
$(MAKE)
"
=
""
;
then
make clean
;
\
else
$(MAKE)
clean
;
fi
)
;
fi
modules_undo
:
if
test
-d
Modules
;
then
\
(
cd
Modules
;
if
test
"
$(MAKE)
"
=
""
;
then
make clean
;
\
...
...
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