mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
dd00925e8d
zstreamdump(8) was in quite a bad state, and the wrapper didn't work if invoked without /sbin in $PATH Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #12015
22 lines
565 B
Makefile
22 lines
565 B
Makefile
SUBDIRS = zfs zpool zdb zhack zinject zstream ztest
|
|
SUBDIRS += fsck_zfs vdev_id raidz_test zfs_ids_to_path
|
|
SUBDIRS += zpool_influxdb
|
|
|
|
CPPCHECKDIRS = zfs zpool zdb zhack zinject zstream ztest
|
|
CPPCHECKDIRS += raidz_test zfs_ids_to_path zpool_influxdb
|
|
|
|
if USING_PYTHON
|
|
SUBDIRS += arcstat arc_summary dbufstat
|
|
endif
|
|
|
|
if BUILD_LINUX
|
|
SUBDIRS += mount_zfs zed zgenhostid zvol_id zvol_wait
|
|
CPPCHECKDIRS += mount_zfs zed zgenhostid zvol_id
|
|
endif
|
|
|
|
PHONY = cppcheck
|
|
cppcheck: $(CPPCHECKDIRS)
|
|
set -e ; for dir in $(CPPCHECKDIRS) ; do \
|
|
$(MAKE) -C $$dir cppcheck ; \
|
|
done
|