mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
fb05a91808
As xfstests is no longer supported on IRIX, remove the ability to build xfstests for IRIX. Signed-off-by: Eric Biggers <ebiggers@google.com> Reviewed-by: Eryu Guan <eguan@redhat.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
47 lines
936 B
Makefile
47 lines
936 B
Makefile
#
|
|
# Copyright (c) 2003-2005 Silicon Graphics, Inc. All Rights Reserved.
|
|
#
|
|
|
|
TOPDIR = ..
|
|
include $(TOPDIR)/include/builddefs
|
|
|
|
TARGETS = doio fsstress fsx growfiles iogen
|
|
SCRIPTS = rwtest.sh
|
|
CFILES = $(TARGETS:=.c)
|
|
HFILES = doio.h
|
|
LDIRT = $(TARGETS)
|
|
LCFLAGS = -DXFS
|
|
LCFLAGS += -I$(TOPDIR)/src #Used for including $(TOPDIR)/src/global.h
|
|
|
|
ifeq ($(HAVE_ATTR_LIST), true)
|
|
LCFLAGS += -DHAVE_ATTR_LIST
|
|
LLDLIBS += $(LIBATTR)
|
|
endif
|
|
|
|
ifeq ($(HAVE_AIO), true)
|
|
TARGETS += aio-stress
|
|
LCFLAGS += -DAIO
|
|
LLDLIBS += -laio -lpthread
|
|
endif
|
|
|
|
ifeq ($(HAVE_FALLOCATE), true)
|
|
LCFLAGS += -DFALLOCATE
|
|
endif
|
|
|
|
default: depend $(TARGETS)
|
|
|
|
depend: .dep
|
|
|
|
include $(BUILDRULES)
|
|
|
|
$(TARGETS): $(LIBTEST)
|
|
@echo " [CC] $@"
|
|
$(Q)$(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS) $(LDLIBS) $(LIBTEST)
|
|
|
|
install: default
|
|
$(INSTALL) -m 755 -d $(PKG_LIB_DIR)/ltp
|
|
$(LTINSTALL) -m 755 $(TARGETS) $(PKG_LIB_DIR)/ltp
|
|
$(INSTALL) -m 755 $(SCRIPTS) $(PKG_LIB_DIR)/ltp
|
|
|
|
-include .dep
|