Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
build: fix make -j' fails after make clean'
Browse files Browse the repository at this point in the history
make fails if:
    ./configure && make clean && make -j6

as out/Makefile has not yet be made when entering sub dirs
  • Loading branch information
bearice authored and bnoordhuis committed Aug 28, 2012
1 parent 2418434 commit ef3617c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -22,11 +22,11 @@ endif
# to check for changes.
.PHONY: node node_g

node: config.gypi
node: config.gypi out/Makefile
$(MAKE) -C out BUILDTYPE=Release V=$(V)
ln -fs out/Release/node node

node_g: config.gypi
node_g: config.gypi out/Makefile
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
ln -fs out/Debug/node node_g

Expand Down

0 comments on commit ef3617c

Please sign in to comment.