diff options
author | MITSUNARI Shigeo <[email protected]> | 2014-08-31 22:32:20 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2014-08-31 22:32:20 +0900 |
commit | c9bed5ff30f5f4371644cd248a2e9decf379e58f (patch) | |
tree | 3e9c1a646e9a8f5d8c5d681536096865dc44bcef /test | |
parent | e0476a74f0fd9eccf12b9053156a4bdc9eb3169e (diff) | |
download | xbyak-c9bed5ff30f5f4371644cd248a2e9decf379e58f.tar.gz xbyak-c9bed5ff30f5f4371644cd248a2e9decf379e58f.zip |
fix mode of test
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 02b39f7..10f432d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -5,7 +5,7 @@ ifeq ($(shell uname -m),x86_64) BIT=64 endif -ifneq ($(MODE_BIT),64) +ifeq ($(MODE_BIT),64) TARGET += jmp64 address64 endif |