Skip to content

Commit

Permalink
Avoid rebuilding everything due to submodule update.
Browse files Browse the repository at this point in the history
The factoring isn't right yet, but it should work well enough
for now.
  • Loading branch information
gerdr committed Aug 24, 2013
1 parent 6d4f765 commit 9fd2429
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions build/Makefile.in
Expand Up @@ -235,11 +235,6 @@ moarvm@exe@: $(OBJECTS) @thirdpartylibs@
$(MSG) linking $@
$(CMD)$(LD) @ldout@$@ $(LDFLAGS) $(OBJECTS) $(LDLIBS)

submodules:
$(MSG) updating submodules
$(CMD)git submodule init $(NOOUT)
$(CMD)git submodule update $(NOOUT)

apr: @aprlib@

libuv: _uvlib_
Expand All @@ -266,7 +261,9 @@ src/strings/unicode.c: src/strings/unicode_db.c src/strings/unicode_ops.c

3rdparty/apr/include/apr.h: @aprlib@

3rdparty/linenoise/linenoise.h: submodules
3rdparty/linenoise/linenoise.h: .gitmodules
$(MSG) updating submodules
$(CMD)git submodule update --init $(NOOUT)

@aprlib@:
$(MSG) building $@...
Expand Down

0 comments on commit 9fd2429

Please sign in to comment.