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) ;
|
mkdir -p $(BEAMDIR) ;
|
||||||
$(ERLC) $(ERLCFLAGS) $(BEAMDIR) $(SRCDIR)/*.erl ;
|
$(ERLC) $(ERLCFLAGS) $(BEAMDIR) $(SRCDIR)/*.erl ;
|
||||||
|
|
||||||
erlang_js:
|
erlang_js: force_look
|
||||||
$(MAKE) -C erlang_js/ ;
|
cd erlang_js ; $(MAKE) $(MFLAGS);
|
||||||
|
|
||||||
test:
|
test:
|
||||||
echo "==> test $(MOD)" ;
|
echo "==> test $(MOD)" ;
|
||||||
|
@ -40,4 +40,5 @@ run:
|
||||||
-pa src \
|
-pa src \
|
||||||
-s start_ggs
|
-s start_ggs
|
||||||
|
|
||||||
|
force_look:
|
||||||
|
true
|
Reference in a new issue