mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 00:10:21 +08:00
85923c8f30
Update zlib-ng to 2.2.1 #26113 Release: https://github.com/zlib-ng/zlib-ng/releases/tag/2.2.1 ARM diagnostics patch: https://github.com/zlib-ng/zlib-ng/pull/1774 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
79 lines
2.1 KiB
Makefile
79 lines
2.1 KiB
Makefile
# Makefile for zlib
|
|
# Copyright (C) 1995-2013 Jean-loup Gailly, Mark Adler
|
|
# For conditions of distribution and use, see copyright notice in zlib.h
|
|
|
|
CC=
|
|
CFLAGS=
|
|
SFLAGS=
|
|
INCLUDES=
|
|
SUFFIX=
|
|
|
|
ACLEFLAG=
|
|
NEONFLAG=
|
|
ARMV6FLAG=
|
|
NOLTOFLAG=
|
|
|
|
SRCDIR=.
|
|
SRCTOP=../..
|
|
TOPDIR=$(SRCTOP)
|
|
|
|
all: \
|
|
adler32_neon.o adler32_neon.lo \
|
|
arm_features.o arm_features.lo \
|
|
chunkset_neon.o chunkset_neon.lo \
|
|
compare256_neon.o compare256_neon.lo \
|
|
crc32_acle.o crc32_acle.lo \
|
|
slide_hash_neon.o slide_hash_neon.lo \
|
|
slide_hash_armv6.o slide_hash_armv6.lo \
|
|
|
|
adler32_neon.o:
|
|
$(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/adler32_neon.c
|
|
|
|
adler32_neon.lo:
|
|
$(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/adler32_neon.c
|
|
|
|
arm_features.o:
|
|
$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/arm_features.c
|
|
|
|
arm_features.lo:
|
|
$(CC) $(SFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/arm_features.c
|
|
|
|
chunkset_neon.o:
|
|
$(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/chunkset_neon.c
|
|
|
|
chunkset_neon.lo:
|
|
$(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/chunkset_neon.c
|
|
|
|
compare256_neon.o:
|
|
$(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/compare256_neon.c
|
|
|
|
compare256_neon.lo:
|
|
$(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/compare256_neon.c
|
|
|
|
crc32_acle.o:
|
|
$(CC) $(CFLAGS) $(ACLEFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c
|
|
|
|
crc32_acle.lo:
|
|
$(CC) $(SFLAGS) $(ACLEFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c
|
|
|
|
slide_hash_neon.o:
|
|
$(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_neon.c
|
|
|
|
slide_hash_neon.lo:
|
|
$(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_neon.c
|
|
|
|
slide_hash_armv6.o:
|
|
$(CC) $(CFLAGS) $(ARMV6FLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_armv6.c
|
|
|
|
slide_hash_armv6.lo:
|
|
$(CC) $(SFLAGS) $(ARMV6FLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_armv6.c
|
|
|
|
mostlyclean: clean
|
|
clean:
|
|
rm -f *.o *.lo *~
|
|
rm -rf objs
|
|
rm -f *.gcda *.gcno *.gcov
|
|
|
|
distclean: clean
|
|
rm -f Makefile
|