aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJan Beich <[email protected]>2017-02-18 21:48:12 +0000
committerJan Beich <[email protected]>2017-02-18 22:12:48 +0000
commite12fe06587557a640b70b00dace59b10693e39ab (patch)
treebf4f378a91de085b21de4f6fcd4f7b63e799277d
parentb7ae2f8e82e59ade941bdb4685e9b07a569a33ea (diff)
downloadxbyak-e12fe06587557a640b70b00dace59b10693e39ab.tar.gz
xbyak-e12fe06587557a640b70b00dace59b10693e39ab.zip
Build subdirs with the same make(1) flavor
$ gmake make -C sample make[1]: "sample/Makefile" line 6: Missing dependency operator make[1]: "sample/Makefile" line 18: Need an operator make[1]: "sample/Makefile" line 23: Need an operator make[1]: "sample/Makefile" line 25: Missing dependency operator make[1]: "sample/Makefile" line 27: Missing dependency operator make[1]: "sample/Makefile" line 29: Need an operator make[1]: "sample/Makefile" line 30: Need an operator make[1]: "sample/Makefile" line 32: Missing dependency operator make[1]: "sample/Makefile" line 34: Need an operator make[1]: Fatal errors encountered -- cannot continue make[1]: stopped in sample gmake: *** [Makefile:5: all] Error 1
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 13012ad..ba5a624 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,10 @@ PREFIX=/usr/local
INSTALL_DIR=$(PREFIX)/include/xbyak
all:
- make -C sample
+ $(MAKE) -C sample
clean:
- make -C sample clean
+ $(MAKE) -C sample clean
install:
mkdir -p $(INSTALL_DIR)