Skip to content

Commit

Permalink
build deps before building app
Browse files Browse the repository at this point in the history
  • Loading branch information
nupfel committed Apr 21, 2011
1 parent 6b5444a commit 9599c43
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
all:
(cd src;$(MAKE))
(cd deps/mochiweb; $(MAKE))
(cd deps/erlang_couchdb; $(MAKE))
(cd src; $(MAKE))

clean:
(cd src;$(MAKE) clean)
(cd deps/mochiweb; $(MAKE) clean)
(cd deps/erlang_couchdb; $(MAKE) clean)
(cd src; $(MAKE) clean)

0 comments on commit 9599c43

Please sign in to comment.