From 1de2b58b8e299c9e46f2db66158fd054703b814c Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 1 Nov 2020 09:16:19 -0800 Subject: [PATCH] tests/ceph: add Makefile 'make install' stopped working because the tests/ceph/ directory is missing a Makefile. Add it. Signed-off-by: Eric Biggers Reviewed-by: Bill O'Donnell Reviewed-by: Vladimir Zapolskiy Tested-by: Vladimir Zapolskiy Signed-off-by: Eryu Guan --- tests/ceph/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/ceph/Makefile diff --git a/tests/ceph/Makefile b/tests/ceph/Makefile new file mode 100644 index 00000000..55e35d77 --- /dev/null +++ b/tests/ceph/Makefile @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: GPL-2.0 + +TOPDIR = ../.. +include $(TOPDIR)/include/builddefs + +CEPH_DIR = ceph +TARGET_DIR = $(PKG_LIB_DIR)/$(TESTS_DIR)/$(CEPH_DIR) + +include $(BUILDRULES) + +install: + $(INSTALL) -m 755 -d $(TARGET_DIR) + $(INSTALL) -m 755 $(TESTS) $(TARGET_DIR) + $(INSTALL) -m 644 group $(TARGET_DIR) + $(INSTALL) -m 644 $(OUTFILES) $(TARGET_DIR) + +# Nothing. +install-dev install-lib: -- 2.30.2