mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
cb15a45be8
xfstests supports extended test names like 314-foo-bar, but installation of these tests was skipped (not matching a regexp). So this patch fixes the makefiles in tests/*/ The include/buildrules change was written by Dave Chinner. Signed-off-by: Jan Tulak <jtulak@redhat.com> Reviewed-by: Eryu Guan <eguan@redhat.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
21 lines
426 B
Makefile
21 lines
426 B
Makefile
#
|
|
# Copyright (c) 2003-2005 Silicon Graphics, Inc. All Rights Reserved.
|
|
#
|
|
|
|
TOPDIR = ../..
|
|
include $(TOPDIR)/include/builddefs
|
|
|
|
XFS_DIR = xfs
|
|
TARGET_DIR = $(PKG_LIB_DIR)/$(TESTS_DIR)/$(XFS_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:
|