This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
SisMaker
/
jiffy
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
62
Wiki
Activity
Browse Source
Cleanup Makefile
pull/21/merge
Paul J. Davis
13 years ago
parent
ad1d4c5e9e
commit
64d0e65d40
1 changed files
with
12 additions
and
6 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-6
Makefile
+ 12
- 6
Makefile
View File
@ -7,11 +7,17 @@ clean:
rm -rf .eunit
rm -rf .eunit
rm test/*.beam
rm test/*.beam
deps
:
./
deps
/
./rebar get-deps update-deps
build
:
deps
depends
:
@if
test
! -d ./deps
;
then
\
./rebar get-deps
;
\
else
\
./rebar update-deps
;
\
fi
build
:
@if
test
! -d ./deps
;
then
\
./rebar get-deps
;
\
fi
./rebar compile
./rebar compile
@ -23,7 +29,7 @@ eunit:
./rebar eunit
skip_deps
=
true
./rebar eunit
skip_deps
=
true
check
:
etap
eunit
check
:
build
etap
eunit
%.beam
:
%.
erl
%.beam
:
%.
erl
Write
Preview
Loading…
Cancel
Save