Browse Source

Force makefile generation in gyp

v0.7.4-release
Ryan Dahl 13 years ago
parent
commit
48d21dd541
  1. 4
      Makefile
  2. 2
      configure

4
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
@ -14,7 +13,8 @@ clean:
rm -rf out
distclean:
rm -rf out
-rm -rf out
-options.gypi
test: all
python tools/test.py --mode=release simple message

2
configure

@ -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'])

Loading…
Cancel
Save