diff options
Diffstat (limited to '.rebar/templates/Makefile')
-rw-r--r-- | .rebar/templates/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.rebar/templates/Makefile b/.rebar/templates/Makefile index 647994f6..62797111 100644 --- a/.rebar/templates/Makefile +++ b/.rebar/templates/Makefile @@ -2,7 +2,8 @@ all: compile compile: @ERL_LIBS="`pwd`/apps" ./rebar compile - python scons/scons.py + @echo "==> couchjs (compile)" + @cd couchjs && python scons/scons.py clean: @./rebar clean @@ -18,8 +19,8 @@ dist: compile @rm -rf rel/dbcore @./rebar generate @mkdir -p rel/dbcore/var/share/server - @cp build/main.js rel/dbcore/var/share/server/ - @cp build/couchjs rel/dbcore/bin/ + @cp couchjs/build/main.js rel/dbcore/var/share/server/ + @cp couchjs/build/couchjs rel/dbcore/bin/ distclean: clean @rm -rf rel/dbcore |