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