generic/402: Drop useless fail message
[xfstests-dev.git] / src / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 #
3 # Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5
6 TOPDIR = ..
7 include $(TOPDIR)/include/builddefs
8
9 TARGETS = dirstress fill fill2 getpagesize holes lstat64 \
10         nametest permname randholes runas truncfile usemem \
11         mmapcat append_reader append_writer dirperf metaperf \
12         devzero feature alloc fault fstest t_access_root \
13         godown resvtest writemod writev_on_pagefault makeextents itrash rename \
14         multi_open_unlink dmiperf unwritten_sync genhashnames t_holes \
15         t_mmap_writev t_truncate_cmtime dirhash_collide t_rename_overwrite \
16         holetest t_truncate_self af_unix t_mmap_stale_pmd \
17         t_mmap_cow_race t_mmap_fallocate fsync-err t_mmap_write_ro \
18         t_ext4_dax_journal_corruption t_ext4_dax_inline_corruption \
19         t_ofd_locks t_mmap_collision mmap-write-concurrent \
20         t_get_file_time t_create_short_dirs t_create_long_dirs
21
22 LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
23         preallo_rw_pattern_writer ftrunc trunc fs_perms testx looptest \
24         locktest unwritten_mmap bulkstat_unlink_test \
25         bulkstat_unlink_test_modified t_dir_offset t_futimens t_immutable \
26         stale_handle pwrite_mmap_blocked t_dir_offset2 seek_sanity_test \
27         seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
28         renameat2 t_getcwd e4compact test-nextquota punch-alternating \
29         attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
30         dio-invalidate-cache stat_test t_encrypted_d_revalidate \
31         attr_replace_test swapon mkswap t_attr_corruption t_open_tmpfiles \
32         fscrypt-crypt-util bulkstat_null_ocount splice-test
33
34 SUBDIRS = log-writes perf
35
36 LLDLIBS = $(LIBATTR) $(LIBHANDLE) $(LIBACL) -lpthread -lrt
37
38 ifeq ($(HAVE_XLOG_ASSIGN_LSN), true)
39 LINUX_TARGETS += loggen
40 endif
41
42 ifeq ($(HAVE_FIEMAP), true)
43 LINUX_TARGETS += fiemap-tester t_stripealign
44 endif
45
46 ifeq ($(HAVE_OPEN_BY_HANDLE_AT), true)
47 LINUX_TARGETS += open_by_handle
48 endif
49
50 ifeq ($(HAVE_FALLOCATE), true)
51 LCFLAGS += -DHAVE_FALLOCATE
52 endif
53
54 ifeq ($(PKG_PLATFORM),linux)
55 TARGETS += $(LINUX_TARGETS)
56 endif
57
58 ifeq ($(HAVE_DB), true)
59 TARGETS += dbtest
60 LLDLIBS += $(LIBGDBM)
61 endif
62
63 ifeq ($(HAVE_AIO), true)
64 TARGETS += t_mmap_dio
65 SUBDIRS += aio-dio-regress
66 LLDLIBS += -laio
67 endif
68
69 CFILES = $(TARGETS:=.c)
70 LDIRT = $(TARGETS) fssum
71
72
73 default: depend $(LDIRT) $(SUBDIRS)
74
75 depend: .dep
76
77 include $(BUILDRULES)
78
79 fssum: fssum.c md5.c
80         @echo "    [CC]    $@"
81         $(Q)$(LTLINK) fssum.c md5.c -o $@ $(CFLAGS) $(LDFLAGS) $(LDLIBS)
82
83 $(TARGETS): $(LIBTEST)
84         @echo "    [CC]    $@"
85         $(Q)$(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS) $(LDLIBS) $(LIBTEST)
86
87 LINKTEST = $(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS)
88
89 install: default $(addsuffix -install,$(SUBDIRS))
90         $(INSTALL) -m 755 -d $(PKG_LIB_DIR)/src
91         $(LTINSTALL) -m 755 $(LDIRT) $(PKG_LIB_DIR)/src
92         $(LTINSTALL) -m 755 dmerror fill2attr fill2fs fill2fs_check scaleread.sh $(PKG_LIB_DIR)/src
93         $(LTINSTALL) -m 644 dumpfile $(PKG_LIB_DIR)/src
94
95 %-install:
96         $(MAKE) -C $* install
97
98 -include .dep