mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
5cdca5b1da
No installation diff, dist lost -zfs-2.1.99/cmd/fsck_zfs/fsck.zfs which was distributed erroneously, since it's generated Also clean gitrev on clean Also add -e 'any possible bashisms' to default checkbashisms flags, and fully parallelise it and shellcheck, and it works out-of-tree, too Also align the Release in the dist META file correctly Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #13316
47 lines
929 B
Makefile
47 lines
929 B
Makefile
include $(srcdir)/%D%/zed.d/Makefile.am
|
|
|
|
zed_CFLAGS = $(AM_CFLAGS)
|
|
zed_CFLAGS += $(LIBUDEV_CFLAGS) $(LIBUUID_CFLAGS)
|
|
|
|
sbin_PROGRAMS += zed
|
|
CPPCHECKTARGETS += zed
|
|
|
|
zed_SOURCES = \
|
|
%D%/zed.c \
|
|
%D%/zed.h \
|
|
%D%/zed_conf.c \
|
|
%D%/zed_conf.h \
|
|
%D%/zed_disk_event.c \
|
|
%D%/zed_disk_event.h \
|
|
%D%/zed_event.c \
|
|
%D%/zed_event.h \
|
|
%D%/zed_exec.c \
|
|
%D%/zed_exec.h \
|
|
%D%/zed_file.c \
|
|
%D%/zed_file.h \
|
|
%D%/zed_log.c \
|
|
%D%/zed_log.h \
|
|
%D%/zed_strings.c \
|
|
%D%/zed_strings.h \
|
|
\
|
|
%D%/agents/fmd_api.c \
|
|
%D%/agents/fmd_api.h \
|
|
%D%/agents/fmd_serd.c \
|
|
%D%/agents/fmd_serd.h \
|
|
%D%/agents/zfs_agents.c \
|
|
%D%/agents/zfs_agents.h \
|
|
%D%/agents/zfs_diagnosis.c \
|
|
%D%/agents/zfs_mod.c \
|
|
%D%/agents/zfs_retire.c
|
|
|
|
zed_LDADD = \
|
|
libzfs.la \
|
|
libzfs_core.la \
|
|
libnvpair.la \
|
|
libuutil.la
|
|
|
|
zed_LDADD += -lrt $(LIBATOMIC_LIBS) $(LIBUDEV_LIBS) $(LIBUUID_LIBS)
|
|
zed_LDFLAGS = -pthread
|
|
|
|
EXTRA_DIST += $(addprefix %D%/,agents/README.md)
|