useful simple program for creating holes when want
[xfstests-dev.git] / src / Makefile
1
2 # Copyright (c) 2000-2005 Silicon Graphics, Inc.  All Rights Reserved.
3
4 # This program is free software; you can redistribute it and/or modify it
5 # under the terms of version 2 of the GNU General Public License as
6 # published by the Free Software Foundation.
7
8 # This program is distributed in the hope that it would be useful, but
9 # WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11
12 # Further, this software is distributed without any warranty that it is
13 # free of the rightful claim of any third person regarding infringement
14 # or the like.  Any license provided herein, whether implied or
15 # otherwise, applies only to this software file.  Patent licenses, if
16 # any, provided herein do not apply to combinations of this program with
17 # other software, or any other product whatsoever.
18
19 # You should have received a copy of the GNU General Public License along
20 # with this program; if not, write the Free Software Foundation, Inc., 59
21 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
22
23 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 # Mountain View, CA  94043, or:
25
26 # http://www.sgi.com 
27
28 # For further information regarding this notice, see: 
29
30 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31 #
32
33 TOPDIR = ..
34 include $(TOPDIR)/include/builddefs
35
36 TARGETS = dirstress fill fill2 getpagesize holes lstat64 \
37         nametest permname randholes runas truncfile usemem \
38         mmapcat append_reader append_writer dirperf metaperf \
39         devzero feature alloc fault fstest t_access_root \
40         godown resvtest writemod makeextents
41
42 LINUX_TARGETS = loggen xfsctl bstat t_mtab getdevicesize
43
44 IRIX_TARGETS = open_unlink
45
46 ifeq ($(PKG_PLATFORM),linux)
47 TARGETS += $(LINUX_TARGETS)
48 endif
49
50 ifeq ($(PKG_PLATFORM),irix)
51 TARGETS += $(IRIX_TARGETS)
52 endif
53
54 ifeq ($(HAVE_DB), true)
55 TARGETS += dbtest
56 endif
57
58 ifeq ($(PKG_PLATFORM),linux)
59 TARGETS += t_immutable
60 endif
61
62 CFILES = $(TARGETS:=.c)
63 LDIRT = $(TARGETS)
64
65 default: $(TARGETS)
66
67 include $(BUILDRULES)
68 LINKTEST = $(LTLINK) $@.c -o $@ $(CFLAGS) $(LDFLAGS)
69
70 randholes: randholes.o $(LIBTEST)
71         $(LINKTEST) $(LIBTEST) $(LDLIBS)
72
73 truncfile: truncfile.o $(LIBTEST)
74         $(LINKTEST) $(LIBTEST) $(LDLIBS)
75
76 dbtest: dbtest.o $(LIBTEST)
77         $(LINKTEST) $(LIBTEST) $(LIBGDBM) $(LDLIBS)
78
79 nametest: nametest.o $(LIBTEST)
80         $(LINKTEST) $(LIBTEST) $(LDLIBS)
81
82 bstat: bstat.o $(LIBHANDLE)
83         $(LINKTEST) $(LIBHANDLE) $(LDLIBS)
84
85 t_immutable: t_immutable.o $(LIBHANDLE) $(LIBACL)
86         $(LINKTEST) $(LIBACL) $(LIBHANDLE) $(LDLIBS)
87
88 loggen: loggen.o
89         $(LINKTEST) $(LDLIBS)
90
91 fstest: fstest.o
92         $(LINKTEST)
93
94 resvtest: resvtest.o
95         $(LINKTEST)
96
97 #scaleread: scaleread.o $(LDLIBS)
98 #       $(LINKTEST)
99
100 acl_get: acl_get.o $(LIBACL) $(LIBATTR)
101         $(LINKTEST) $(LIBACL) $(LIBATTR) $(LDLIBS)
102
103
104 ifeq ($(PKG_PLATFORM),irix)
105 fill2: fill2.o 
106         $(LINKTEST)  -lgen
107
108 runas: runas.o 
109         $(LINKTEST)  -lgen
110
111 open_unlink: open_unlink.o $(LIBHANDLE)
112         $(LINKTEST) $(LIBHANDLE) $(LDLIBS)
113
114 endif