ext4: test for DAX + journaling corruption
[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 writev_on_pagefault makeextents itrash rename \
13         multi_open_unlink dmiperf unwritten_sync genhashnames t_holes \
14         t_mmap_writev t_truncate_cmtime dirhash_collide t_rename_overwrite \
15         holetest t_truncate_self t_mmap_dio af_unix t_mmap_stale_pmd \
16         t_mmap_cow_race t_mmap_fallocate fsync-err t_mmap_write_ro \
17         t_ext4_dax_journal_corruption
18
19 LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
20         preallo_rw_pattern_writer ftrunc trunc fs_perms testx looptest \
21         locktest unwritten_mmap bulkstat_unlink_test t_stripealign \
22         bulkstat_unlink_test_modified t_dir_offset t_futimens t_immutable \
23         stale_handle pwrite_mmap_blocked t_dir_offset2 seek_sanity_test \
24         seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
25         renameat2 t_getcwd e4compact test-nextquota punch-alternating \
26         attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
27         dio-invalidate-cache stat_test t_encrypted_d_revalidate
28
29 SUBDIRS = log-writes perf
30
31 LLDLIBS = $(LIBATTR) $(LIBHANDLE) $(LIBACL) -lpthread
32
33 ifeq ($(HAVE_XLOG_ASSIGN_LSN), true)
34 LINUX_TARGETS += loggen
35 endif
36
37 ifeq ($(HAVE_FIEMAP), true)
38 LINUX_TARGETS += fiemap-tester
39 endif
40
41 ifeq ($(HAVE_OPEN_BY_HANDLE_AT), true)
42 LINUX_TARGETS += open_by_handle
43 endif
44
45 ifeq ($(HAVE_FALLOCATE), true)
46 LCFLAGS += -DHAVE_FALLOCATE
47 endif
48
49 ifeq ($(PKG_PLATFORM),linux)
50 TARGETS += $(LINUX_TARGETS)
51 endif
52
53 ifeq ($(HAVE_DB), true)
54 TARGETS += dbtest
55 LLDLIBS += $(LIBGDBM)
56 endif
57
58 ifeq ($(HAVE_AIO), true)
59 SUBDIRS += aio-dio-regress
60 LLDLIBS += -laio
61 endif
62
63 CFILES = $(TARGETS:=.c)
64 LDIRT = $(TARGETS) fssum
65
66
67 default: depend $(LDIRT) $(SUBDIRS)
68
69 depend: .dep
70
71 include $(BUILDRULES)
72
73 fssum: fssum.c md5.c
74         @echo "    [CC]    $@"
75         $(Q)$(LTLINK) fssum.c md5.c -o $@ $(CFLAGS) $(LDFLAGS) $(LDLIBS)
76
77 $(TARGETS): $(LIBTEST)
78         @echo "    [CC]    $@"
79         $(Q)$(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS) $(LDLIBS) $(LIBTEST)
80
81 LINKTEST = $(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS)
82
83 install: default $(addsuffix -install,$(SUBDIRS))
84         $(INSTALL) -m 755 -d $(PKG_LIB_DIR)/src
85         $(LTINSTALL) -m 755 $(LDIRT) $(PKG_LIB_DIR)/src
86         $(LTINSTALL) -m 755 dmerror fill2attr fill2fs fill2fs_check scaleread.sh $(PKG_LIB_DIR)/src
87         $(LTINSTALL) -m 644 dumpfile $(PKG_LIB_DIR)/src
88
89 %-install:
90         $(MAKE) -C $* install
91
92 -include .dep