mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
20 lines
408 B
Makefile
20 lines
408 B
Makefile
|
|
#
|
||
|
|
# Copyright (c) 2003-2005 Silicon Graphics, Inc. All Rights Reserved.
|
||
|
|
#
|
||
|
|
|
||
|
|
TOPDIR = ..
|
||
|
|
include $(TOPDIR)/include/builddefs
|
||
|
|
|
||
|
|
TESTS_SUBDIRS = $(shell find . -maxdepth 1 -type d | sed -n -e 's/\.\///gp')
|
||
|
|
|
||
|
|
include $(BUILDRULES)
|
||
|
|
|
||
|
|
install: $(addsuffix -install,$(TESTS_SUBDIRS))
|
||
|
|
$(INSTALL) -m 755 -d $(PKG_LIB_DIR)/$(TESTS_DIR)
|
||
|
|
|
||
|
|
# Nothing.
|
||
|
|
install-dev install-lib:
|
||
|
|
|
||
|
|
%-install:
|
||
|
|
$(MAKE) $(MAKEOPTS) -C $* install
|