Fixed problem with erlang_js make where it wouldn't make
This commit is contained in:
parent
2a884cb9a7
commit
a544484f1a
1 changed files with 4 additions and 3 deletions
7
Makefile
7
Makefile
|
@ -10,8 +10,8 @@ compile:
|
|||
mkdir -p $(BEAMDIR) ;
|
||||
$(ERLC) $(ERLCFLAGS) $(BEAMDIR) $(SRCDIR)/*.erl ;
|
||||
|
||||
erlang_js:
|
||||
$(MAKE) -C erlang_js/ ;
|
||||
erlang_js: force_look
|
||||
cd erlang_js ; $(MAKE) $(MFLAGS);
|
||||
|
||||
test:
|
||||
echo "==> test $(MOD)" ;
|
||||
|
@ -40,4 +40,5 @@ run:
|
|||
-pa src \
|
||||
-s start_ggs
|
||||
|
||||
|
||||
force_look:
|
||||
true
|
Reference in a new issue