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