diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-12-27 09:06:48 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-12-27 09:06:48 +0900 |
commit | 8c44467afb480d7d3639965bed79566cafa484ad (patch) | |
tree | 86ffe2ce50c21e50b4f56726fff857b9c034161f /sample/Makefile | |
parent | 523cf1ed04bcf97794d8796fab8527e28b07e86f (diff) | |
download | xbyak-8c44467afb480d7d3639965bed79566cafa484ad.tar.gz xbyak-8c44467afb480d7d3639965bed79566cafa484ad.zip |
add no_flags sample
Diffstat (limited to 'sample/Makefile')
-rw-r--r-- | sample/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sample/Makefile b/sample/Makefile index 2010f69..ff94b3a 100644 --- a/sample/Makefile +++ b/sample/Makefile @@ -30,7 +30,7 @@ else endif ifeq ($(BIT),64) -TARGET += test64 bf64 memfunc64 test_util64 jmp_table64 zero_upper ccmp +TARGET += test64 bf64 memfunc64 test_util64 jmp_table64 zero_upper ccmp no_flags ifeq ($(BOOST_EXIST),1) TARGET += calc64 #calc2_64 endif @@ -111,6 +111,10 @@ ccmp: ccmp.cpp $(XBYAK_INC) $(CXX) $(CFLAGS) ccmp.cpp -o $@ test_ccmp: ccmp sde -future -- ./ccmp +no_flags: no_flags.cpp $(XBYAK_INC) + $(CXX) $(CFLAGS) no_flags.cpp -o $@ +test_no_flags: no_flags + sde -future -- ./no_flags clean: rm -rf $(TARGET) profiler profiler-vtune |