Update xfsprogs to latest kernel headers and functions
[xfstests-dev.git] / Makefile
1 #
2 # Copyright (c) 2000-2008 Silicon Graphics, Inc.  All Rights Reserved.
3 #
4
5 TOPDIR = .
6 HAVE_BUILDDEFS = $(shell test -f $(TOPDIR)/include/builddefs && echo yes || echo no)
7
8 ifeq ($(HAVE_BUILDDEFS), yes)
9 include $(TOPDIR)/include/builddefs
10 endif
11
12 TESTS = $(shell sed -n -e '/^[0-9][0-9][0-9]*/s/ .*//p' group)
13 CONFIGURE = configure include/builddefs include/config.h
14 DMAPI_MAKEFILE = dmapi/Makefile
15 LSRCFILES = configure configure.in aclocal.m4 README VERSION
16 LDIRT = config.log .dep config.status config.cache confdefs.h conftest* \
17         check.log check.time
18
19 SUBDIRS = include lib ltp src m4
20
21 default: $(CONFIGURE) $(DMAPI_MAKEFILE) new remake check $(TESTS)
22 ifeq ($(HAVE_BUILDDEFS), no)
23         $(MAKE) $@
24 else
25         $(SUBDIRS_MAKERULE)
26         # automake doesn't always support "default" target 
27         # so do dmapi make explicitly with "all"
28         cd $(TOPDIR)/dmapi; make all
29 endif
30
31 ifeq ($(HAVE_BUILDDEFS), yes)
32 include $(BUILDRULES)
33 else
34 clean:  # if configure hasn't run, nothing to clean
35 endif
36
37 $(CONFIGURE):
38         autoheader
39         autoconf
40         ./configure \
41                 --libexecdir=/usr/lib \
42                 --enable-lib64=yes
43
44 $(DMAPI_MAKEFILE):
45         cd $(TOPDIR)/dmapi/ ; ./configure
46
47 aclocal.m4::
48         aclocal --acdir=`pwd`/m4 --output=$@
49
50 install install-dev install-lib:
51
52 realclean distclean: clean
53         rm -f $(LDIRT) $(CONFIGURE)
54         rm -rf autom4te.cache Logs