diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-10-10 15:03:03 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-10-10 15:03:03 +0900 |
commit | 05fe153cd5c3a119994c46bd02339e722dc38a3b (patch) | |
tree | 924c5bce2110757384eff5b4b54549cb7c7b8799 /test | |
parent | 468a0bea47230e0e22f4dabf5315b95e7c823522 (diff) | |
download | xbyak-05fe153cd5c3a119994c46bd02339e722dc38a3b.tar.gz xbyak-05fe153cd5c3a119994c46bd02339e722dc38a3b.zip |
rename TARGET to TEST_FILES
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 04b6cb7..ca2f0bb 100644 --- a/test/Makefile +++ b/test/Makefile @@ -60,9 +60,9 @@ apx: apx.cpp $(XBYAK_INC) avx10_test: avx10_test.cpp $(XBYAK_INC) $(CXX) $(CFLAGS) avx10_test.cpp -o $@ -DXBYAK64 -TARGET=avx10.txt +TEST_FILES=avx10.txt misc.txt xed_test: - @for target in $(addprefix target/, $(TARGET)); do ./test_by_xed.sh $$target; done + @for target in $(addprefix target/, $(TEST_FILES)); do ./test_by_xed.sh $$target; done test_nm: normalize_prefix $(TARGET) $(MAKE) -C ../gen |