xfstests: introduce 285 for SEEK_DATA/SEEK_HOLE sanity test
[xfstests-dev.git] / src / Makefile
1 #
2 # Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
3 #
4
5 TOPDIR = ..
6 include $(TOPDIR)/include/builddefs
7
8 TARGETS = dirstress fill fill2 getpagesize holes lstat64 \
9         nametest permname randholes runas truncfile usemem \
10         mmapcat append_reader append_writer dirperf metaperf \
11         devzero feature alloc fault fstest t_access_root \
12         godown resvtest writemod makeextents itrash rename \
13         multi_open_unlink dmiperf unwritten_sync genhashnames t_holes \
14         t_mmap_writev
15
16 LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
17         preallo_rw_pattern_writer ftrunc trunc fs_perms testx looptest \
18         locktest unwritten_mmap bulkstat_unlink_test t_stripealign \
19         bulkstat_unlink_test_modified t_dir_offset t_futimens t_immutable \
20         stale_handle pwrite_mmap_blocked fstrim t_dir_offset2 seek_sanity_test
21
22 SUBDIRS =
23
24 LLDLIBS = $(LIBATTR) $(LIBHANDLE) $(LIBACL)
25
26 ifeq ($(HAVE_XLOG_ASSIGN_LSN), true)
27 LINUX_TARGETS += loggen
28 endif
29
30 ifeq ($(HAVE_FIEMAP), true)
31 LINUX_TARGETS += fiemap-tester
32 endif
33
34 ifeq ($(HAVE_FALLOCATE), true)
35 LCFLAGS += -DHAVE_FALLOCATE
36 endif
37
38 IRIX_TARGETS = open_unlink
39
40 ifeq ($(PKG_PLATFORM),linux)
41 TARGETS += $(LINUX_TARGETS)
42 endif
43
44 ifeq ($(PKG_PLATFORM),irix)
45 TARGETS += $(IRIX_TARGETS)
46 LLDLIBS += -lgen
47 endif
48
49 ifeq ($(HAVE_DB), true)
50 TARGETS += dbtest
51 LLDLIBS += $(LIBGDBM)
52 endif
53
54 ifeq ($(HAVE_AIO), true)
55 SUBDIRS += aio-dio-regress
56 endif
57
58 CFILES = $(TARGETS:=.c)
59 LDIRT = $(TARGETS)
60
61
62 default: depend $(TARGETS) $(SUBDIRS)
63
64 depend: .dep
65
66 include $(BUILDRULES)
67
68 $(TARGETS): $(LIBTEST)
69         @echo "    [CC]    $@"
70         $(Q)$(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS) $(LDLIBS) $(LIBTEST)
71
72 LINKTEST = $(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS)
73
74 install: default $(addsuffix -install,$(SUBDIRS))
75         $(INSTALL) -m 755 -d $(PKG_LIB_DIR)/src
76         $(INSTALL) -m 755 $(TARGETS) $(PKG_LIB_DIR)/src
77         $(INSTALL) -m 755 fill2attr fill2fs fill2fs_check scaleread.sh $(PKG_LIB_DIR)/src
78         $(INSTALL) -m 644 dumpfile $(PKG_LIB_DIR)/src
79
80 %-install:
81         $(MAKE) -C $* install
82
83 -include .dep