summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2022-03-29 22:02:19 -0400
committerJeffrey Walton <noloader@gmail.com>2022-03-29 22:02:19 -0400
commit48377cac698b82b85f3beb1c6dbbd135cdfd49f6 (patch)
tree1f560657f6a88291bc85023a2f8e8503dcfc25d0 /GNUmakefile
parentab7f885c9fd75178a229fc8e04f99b35bae2fe79 (diff)
downloadcryptopp-git-48377cac698b82b85f3beb1c6dbbd135cdfd49f6.tar.gz
Rename PowerPC specific files
This will allow us to filter-out some files more easily
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 0298fa69..4252d226 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1207,11 +1207,12 @@ endif
# Remove unneeded arch specific files to speed build time.
ifeq ($(IS_PPC32)$(IS_PPC64),00)
- SRCS := $(filter-out ppc_%,$(SRCS))
+ SRCS := $(filter-out %_ppc.cpp,$(SRCS))
endif
ifeq ($(IS_ARM32)$(IS_ARMV8),00)
SRCS := $(filter-out arm_%,$(SRCS))
SRCS := $(filter-out neon_%,$(SRCS))
+ SRCS := $(filter-out %_armv4.S,$(SRCS))
endif
ifeq ($(IS_X86)$(IS_X64),00)
SRCS := $(filter-out sse_%,$(SRCS))
@@ -1227,7 +1228,9 @@ ifneq ($(findstring -DCRYPTOPP_DISABLE_ASM,$(CRYPTOPP_CPPFLAGS)$(CPPFLAGS)$(CXXF
SRCS := $(filter-out sse_%,$(SRCS))
SRCS := $(filter-out %_sse.cpp,$(SRCS))
SRCS := $(filter-out %_avx.cpp,$(SRCS))
+ SRCS := $(filter-out %_ppc.cpp,$(SRCS))
SRCS := $(filter-out %_simd.cpp,$(SRCS))
+ SRCS := $(filter-out %_armv4.S,$(SRCS))
endif
# List cryptlib.cpp first, then cpu.cpp, then integer.cpp to tame C++ static initialization problems.