aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2015-04-25 07:47:44 +0900
committerMITSUNARI Shigeo <[email protected]>2015-04-25 07:47:44 +0900
commitfca4af9ecaf0ac2e80065c362a36adff12fc0678 (patch)
treea3a1c23b715c0ab35b5fc154c846431c21ff8843 /test/Makefile
parentdcf8ca01f789329aee03cd4947eacb2a80614cfa (diff)
downloadxbyak-fca4af9ecaf0ac2e80065c362a36adff12fc0678.tar.gz
xbyak-fca4af9ecaf0ac2e80065c362a36adff12fc0678.zip
add test of setSize
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 10f432d..299cf33 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,4 +1,4 @@
-TARGET = make_nm normalize_prefix jmp address nm_frame bad_address
+TARGET = make_nm normalize_prefix jmp address nm_frame bad_address misc
XBYAK_INC=../xbyak/xbyak.h
BIT=32
ifeq ($(shell uname -m),x86_64)
@@ -32,6 +32,8 @@ nm_frame: nm_frame.cpp ../xbyak/xbyak.h
$(CXX) $(CFLAGS) nm_frame.cpp -o $@ -m32
bad_address: bad_address.cpp ../xbyak/xbyak.h
$(CXX) $(CFLAGS) bad_address.cpp -o $@
+misc: misc.cpp ../xbyak/xbyak.h
+ $(CXX) $(CFLAGS) misc.cpp -o $@
test: normalize_prefix jmp bad_address
./test_nm.sh