mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-03-11 12:56:21 +03:00
Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Signed-off-by: Rob Norris <robn@despairlabs.com> Closes #18077
20 lines
346 B
Makefile
20 lines
346 B
Makefile
# SPDX-License-Identifier: CDDL-1.0
|
|
zdb_CPPFLAGS = $(AM_CPPFLAGS) $(LIBZPOOL_CPPFLAGS)
|
|
zdb_CFLAGS = $(AM_CFLAGS) $(LIBCRYPTO_CFLAGS)
|
|
|
|
sbin_PROGRAMS += zdb
|
|
CPPCHECKTARGETS += zdb
|
|
|
|
zdb_SOURCES = \
|
|
%D%/zdb.c \
|
|
%D%/zdb.h \
|
|
%D%/zdb_il.c
|
|
|
|
zdb_LDADD = \
|
|
libzdb.la \
|
|
libzpool.la \
|
|
libzfs_core.la \
|
|
libnvpair.la
|
|
|
|
zdb_LDADD += $(LIBCRYPTO_LIBS)
|