mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
17f6ac8ecc
Now that we've moved the group membership details into the test case files themselves, automatically generate the group files during build. The autogenerated files are named "group.list" instead of "group" to avoid conflicts between generated and (stale) SCM files as everyone rebases. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com> Reviewed-by: Allison Henderson <allison.henderson@oracle.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
26 lines
522 B
Makefile
26 lines
522 B
Makefile
#
|
|
# Copyright (c) 2015 Fujitsu Ltd.
|
|
# Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
|
|
#
|
|
|
|
TOPDIR = ../..
|
|
include $(TOPDIR)/include/builddefs
|
|
include $(TOPDIR)/include/buildgrouplist
|
|
|
|
F2FS_DIR = f2fs
|
|
TARGET_DIR = $(PKG_LIB_DIR)/$(TESTS_DIR)/$(F2FS_DIR)
|
|
DIRT = group.list
|
|
|
|
default: $(DIRT)
|
|
|
|
include $(BUILDRULES)
|
|
|
|
install:
|
|
$(INSTALL) -m 755 -d $(TARGET_DIR)
|
|
$(INSTALL) -m 755 $(TESTS) $(TARGET_DIR)
|
|
$(INSTALL) -m 644 group.list $(TARGET_DIR)
|
|
$(INSTALL) -m 644 $(OUTFILES) $(TARGET_DIR)
|
|
|
|
# Nothing.
|
|
install-dev install-lib:
|