mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
8bf0c812f5
22b066020c build: match detection of Win32 libraries with mimalloc (#60) 03268b3a02 Merge pull request #59 from kittywhiskers/repair_subtree 3d2e7a183e depends: commit microsoft/mimalloc@91ba1f37 to source tree as 44314dd9 7a4d1a01fa depends: remove mangled 'depends/mimalloc' subdirectory 44314dd972 Squashed 'depends/mimalloc/' content from commit 91ba1f37 8383f081bd dashbls: replace flaky minialloc with microsoft/mimalloc@91ba1f37, add as vendored dependency (#55) 85b7e61b55 fix: Should not check validity for legacy G1 and G2 in FromBytes (#58) 7457939dd5 chore/fix: bump Catch2 to v2.13.10 (#57) git-subtree-dir: src/dashbls git-subtree-split: 22b066020c14bd162022c73f90fc7c940f4acdda
39 lines
980 B
Makefile
39 lines
980 B
Makefile
# Copyright (c) 2013-2016 The Bitcoin Core developers
|
|
# Copyright (c) 2022 The Dash Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING.MIT or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
print-%: FORCE
|
|
@echo '$*'='$($*)'
|
|
|
|
ACLOCAL_AMFLAGS = -I build-aux/m4
|
|
.PHONY: deploy FORCE
|
|
|
|
AM_LDFLAGS = $(LIBTOOL_LDFLAGS) $(HARDENED_LDFLAGS) $(CORE_LDFLAGS) $(GMP_LDFLAGS)
|
|
AM_CXXFLAGS = $(LIBTOOL_CXXFLAGS) $(HARDENED_CXXFLAGS) $(CORE_CXXFLAGS) $(PIC_FLAGS) $(PIE_FLAGS)
|
|
AM_CPPFLAGS = $(LIBTOOL_CPPFLAGS) $(HARDENED_CPPFLAGS) $(CORE_CPPFLAGS) $(PIC_FLAGS) $(GMP_CPPFLAGS)
|
|
PTHREAD_FLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
|
|
|
EXTRA_LIBRARIES =
|
|
|
|
lib_LTLIBRARIES =
|
|
noinst_LTLIBRARIES =
|
|
|
|
bin_PROGRAMS =
|
|
noinst_PROGRAMS =
|
|
EXTRA_DIST =
|
|
|
|
CLEANFILES =
|
|
|
|
include Makefile.bls.include
|
|
|
|
CLEANFILES += $(LIBRELIC) $(LIBDASHBLS) $(LIBMIMALLOC)
|
|
|
|
if USE_TESTS
|
|
CLEANFILES += $(DASHBLS_RUNTEST)
|
|
endif
|
|
|
|
if USE_BENCH
|
|
CLEANFILES += $(DASHBLS_RUNBENCH)
|
|
endif
|