From efe9a6f99e416a73df937f407c05e6ae6d8094a4 Mon Sep 17 00:00:00 2001 From: Changqing Jing Date: Wed, 15 Jan 2025 11:32:16 +0800 Subject: [PATCH] Fix SystemZ macro in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 198bc30316..860cba8050 100644 --- a/Makefile +++ b/Makefile @@ -195,7 +195,7 @@ DEP_SYSZ += $(wildcard arch/SystemZ/SystemZ*.inc) LIBOBJ_SYSZ = ifneq (,$(findstring systemz,$(CAPSTONE_ARCHS))) - CFLAGS += -DCAPSTONE_HAS_SYSZ + CFLAGS += -DCAPSTONE_HAS_SYSTEMZ LIBSRC_SYSZ += $(wildcard arch/SystemZ/SystemZ*.c) LIBOBJ_SYSZ += $(LIBSRC_SYSZ:%.c=$(OBJDIR)/%.o) endif