aboutsummaryrefslogtreecommitdiffhomepage
path: root/gen/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2020-06-28 05:27:35 +0900
committerMITSUNARI Shigeo <[email protected]>2020-06-28 05:30:04 +0900
commit5ce328580447ff0e07b9eb20683fbb93d24f40eb (patch)
treec6824b9be1535f4bca0d09b281c82e8d453e4f3d /gen/Makefile
parentfe4f965fd86522a01bd601a2ecd29d707762a27f (diff)
downloadxbyak-5ce328580447ff0e07b9eb20683fbb93d24f40eb.tar.gz
xbyak-5ce328580447ff0e07b9eb20683fbb93d24f40eb.zip
gen_amx.cpp is merged into gen_avx512.cpp
Diffstat (limited to 'gen/Makefile')
-rw-r--r--gen/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/gen/Makefile b/gen/Makefile
index f9068e4..53d1a94 100644
--- a/gen/Makefile
+++ b/gen/Makefile
@@ -1,5 +1,5 @@
TARGET=../xbyak/xbyak_mnemonic.h
-BIN=sortline gen_code gen_avx512 gen_amx
+BIN=sortline gen_code gen_avx512
CFLAGS=-I../ -O2 -DXBYAK_NO_OP_NAMES -Wall -Wextra -Wno-missing-field-initializers
all: $(TARGET)
sortline: sortline.cpp
@@ -8,8 +8,6 @@ gen_code: gen_code.cpp ../xbyak/xbyak.h avx_type.hpp
$(CXX) $(CFLAGS) $< -o $@
gen_avx512: gen_avx512.cpp ../xbyak/xbyak.h avx_type.hpp
$(CXX) $(CFLAGS) $< -o $@
-gen_amx: gen_amx.cpp ../xbyak/xbyak.h avx_type.hpp
- $(CXX) $(CFLAGS) $< -o $@
$(TARGET): $(BIN)
./gen_code | ./sortline > $@
@@ -21,7 +19,6 @@ $(TARGET): $(BIN)
./gen_avx512 | ./sortline >> $@
echo "#ifdef XBYAK64" >> $@
./gen_avx512 64 | ./sortline >> $@
- ./gen_amx | ./sortline >> $@
echo "#endif" >> $@
echo "#endif" >> $@