mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
b3b7491615
This is just a very small attempt to make it more obvious that these flags aren't optional for libzpool-using programs, by not making it seem like there's an option to say "well, I don't _want_ to force debugging". Sponsored-by: Klara, Inc. Sponsored-by: Wasabi Technology, Inc. Reviewed-by: Allan Jude <allan@klarasystems.com> Reviewed-by: Rich Ercolani <rincebrain@gmail.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Rob Norris <rob.norris@klarasystems.com> Issue #16476 Closes #16477
19 lines
310 B
Makefile
19 lines
310 B
Makefile
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)
|