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

Commit

Permalink
build: print "not yet implemented" warning on make install
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Nov 23, 2011
1 parent 8595981 commit 1db9a2a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Expand Up @@ -9,6 +9,9 @@ out/Release/node: all

out/Makefile: node.gyp deps/uv/uv.gyp

install uninstall:
@echo '`make $(@)` is not implemented yet. Bug bnoordhuis about it in #node.js'

clean:
rm -rf out

Expand Down

3 comments on commit 1db9a2a

@CarlLee
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why can't I make install from source for node v0.6.2, why is it not implemented yet?

@bnoordhuis
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@CarlLee: We're switching build systems. make install works in the v0.6 branch by the way, you're looking at a commit in our master branch.

@CarlLee
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bnoordhuis Thanks, I've successfully built and installed node now.

Please sign in to comment.