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

Commit

Permalink
Force makefile generation in gyp
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Nov 18, 2011
1 parent 4f8d6d0 commit 48d21dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,7 +1,6 @@
BUILDTYPE ?= Release

all: out/Makefile
tools/gyp_node -f make
$(MAKE) -C out BUILDTYPE=$(BUILDTYPE)
-ln -fs out/Release/node node
-ln -fs out/Debug/node node_g
Expand All @@ -14,7 +13,8 @@ clean:
rm -rf out

distclean:
rm -rf out
-rm -rf out
-options.gypi

This comment has been minimized.

Copy link
@bnoordhuis

bnoordhuis Nov 18, 2011

Member

Forgot rm?

This comment has been minimized.

Copy link
@ry

ry Nov 18, 2011

Author

heh yes


test: all
python tools/test.py --mode=release simple message
Expand Down
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -246,4 +246,4 @@ json.dump(output, f, indent=2, skipkeys=True)
f.write("\n")
f.close()

subprocess.call('tools/gyp_node')
subprocess.call(['tools/gyp_node','-f', 'make'])

0 comments on commit 48d21dd

Please sign in to comment.