]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - Makefile
xfs_scrub: remove moveon from repair action list helpers
[thirdparty/xfsprogs-dev.git] / Makefile
CommitLineData
959ef981 1# SPDX-License-Identifier: GPL-2.0
fc49813f 2#
82805b60 3# Copyright (c) 2000-2006 Silicon Graphics, Inc. All Rights Reserved.
dfc130f3 4#
fc49813f 5
35714853
DC
6ifeq ("$(origin V)", "command line")
7 BUILD_VERBOSE = $(V)
8endif
9ifndef BUILD_VERBOSE
10 BUILD_VERBOSE = 0
11endif
12
13ifeq ($(BUILD_VERBOSE),1)
14 Q =
15else
16 Q = @
17endif
18
d4739a50
ES
19CHECK=sparse
20CHECK_OPTS=-Wsparse-all -Wbitwise -Wno-transparent-union -Wno-return-void -Wno-undef \
21 -Wno-non-pointer-null -D__CHECK_ENDIAN__ -D__linux__
22
23ifeq ("$(origin C)", "command line")
e51fde01
ES
24 CHECK_CMD=$(CHECK) $(CHECK_OPTS)
25 CHECKSRC=$(C)
26else
27 CHECK_CMD=@true
28 CHECKSRC=0
d4739a50
ES
29endif
30
e51fde01 31export CHECK_CMD CHECKSRC
d4739a50 32
35714853
DC
33MAKEOPTS = --no-print-directory Q=$(Q)
34
fc49813f
NS
35TOPDIR = .
36HAVE_BUILDDEFS = $(shell test -f $(TOPDIR)/include/builddefs && echo yes || echo no)
37
38ifeq ($(HAVE_BUILDDEFS), yes)
39include $(TOPDIR)/include/builddefs
40endif
41
10a41599
CH
42SRCDIR = $(PKG_NAME)-$(PKG_VERSION)
43SRCTAR = $(PKG_NAME)-$(PKG_VERSION).tar.gz
1f31bd25 44SRCTARXZ = $(PKG_NAME)-$(PKG_VERSION).tar.xz
10a41599 45
42e5b5df 46CONFIGURE = aclocal.m4 configure config.guess config.sub install-sh ltmain.sh
81fba137 47LSRCFILES = configure.ac release.sh README VERSION $(CONFIGURE)
56c84e02 48SRCTARINC = m4/libtool.m4 m4/lt~obsolete.m4 m4/ltoptions.m4 m4/ltsugar.m4 \
48212a30 49 m4/ltversion.m4 po/xfsprogs.pot .gitcensus $(CONFIGURE)
932b0ba9 50LDIRT = config.log .ltdep .dep config.status config.cache confdefs.h \
1f31bd25 51 conftest* built .census install.* install-dev.* *.gz *.xz \
932b0ba9 52 autom4te.cache/* libtool include/builddefs include/platform_defs.h
10a41599
CH
53
54ifeq ($(HAVE_BUILDDEFS), yes)
55LDIRDIRT = $(SRCDIR)
1f31bd25 56LDIRT += $(SRCTAR) $(SRCTARXZ)
10a41599 57endif
f937adac 58
337d9a24
DC
59# header install rules to populate include/xfs correctly
60HDR_SUBDIRS = include libxfs
636b4d91 61
b28b84ca
DW
62LIBFROG_SUBDIR = libfrog
63DLIB_SUBDIRS = libxlog libxcmd libhandle
636b4d91 64LIB_SUBDIRS = libxfs $(DLIB_SUBDIRS)
231a533c 65TOOL_SUBDIRS = copy db estimate fsck fsr growfs io logprint mkfs quota \
9fae859a
ES
66 mdrestore repair rtcp m4 man doc debian spaceman
67
68ifeq ("$(ENABLE_SCRUB)","yes")
69TOOL_SUBDIRS += scrub
70endif
dd30c0ae
JT
71
72ifneq ("$(XGETTEXT)","")
73TOOL_SUBDIRS += po
74endif
fc49813f 75
5d87ed9d
JT
76# If we are on OS X, use glibtoolize from MacPorts, as OS X doesn't have
77# libtoolize binary itself.
78LIBTOOLIZE_TEST=$(shell libtoolize --version >/dev/null 2>&1 && echo found)
79LIBTOOLIZE_BIN=libtoolize
80ifneq ("$(LIBTOOLIZE_TEST)","found")
81LIBTOOLIZE_BIN=glibtoolize
82endif
83
cebd3912 84# include is listed last so it is processed last in clean rules.
b28b84ca 85SUBDIRS = $(LIBFROG_SUBDIR) $(LIB_SUBDIRS) $(TOOL_SUBDIRS) include
2a519b73 86
1eb10ccb 87default: include/builddefs include/platform_defs.h
fc49813f 88ifeq ($(HAVE_BUILDDEFS), no)
35714853 89 $(Q)$(MAKE) $(MAKEOPTS) -C . $@
fc49813f 90else
337d9a24 91 $(Q)$(MAKE) $(MAKEOPTS) headers
35714853 92 $(Q)$(MAKE) $(MAKEOPTS) $(SUBDIRS)
fc49813f
NS
93endif
94
2a519b73 95# tool/lib dependencies
636b4d91 96# note: include/xfs is set up by libxfs, too, so everything is dependent on it.
b28b84ca
DW
97$(LIBFROG_SUBDIR): include
98$(LIB_SUBDIRS) $(TOOL_SUBDIRS): include libfrog
636b4d91
DC
99$(DLIB_SUBDIRS) $(TOOL_SUBDIRS): libxfs
100db logprint: libxlog
bf3256b2 101fsr: libhandle
636b4d91 102growfs: libxcmd
2a519b73 103io: libxcmd libhandle
2a519b73 104quota: libxcmd
1b1b5359 105repair: libxlog libxcmd
3616eb86 106copy: libxlog
82c3a179 107mkfs: libxcmd
48ec2905 108spaceman: libxcmd
95b1e505 109scrub: libhandle libxcmd
9612817d 110rtcp: libfrog
2a519b73 111
fc49813f
NS
112ifeq ($(HAVE_BUILDDEFS), yes)
113include $(BUILDRULES)
114else
115clean: # if configure hasn't run, nothing to clean
116endif
117
5d87ed9d 118
07c561fe
AG
119# Recent versions of libtool require the -i option for copying auxiliary
120# files (config.sub, config.guess, install-sh, ltmain.sh), while older
121# versions will copy those files anyway, and don't understand -i.
5d87ed9d 122LIBTOOLIZE_INSTALL = `$(LIBTOOLIZE_BIN) -n -i >/dev/null 2>/dev/null && echo -i`
07c561fe 123
5893de54 124configure: configure.ac
5d87ed9d 125 $(LIBTOOLIZE_BIN) -c $(LIBTOOLIZE_INSTALL) -f
07c561fe
AG
126 cp include/install-sh .
127 aclocal -I m4
fc49813f 128 autoconf
1eb10ccb
CH
129
130include/builddefs: configure
595e27db 131 ./configure $$LOCAL_CONFIGURE_OPTIONS
fc49813f 132
2a519b73
BN
133include/platform_defs.h: include/builddefs
134## Recover from the removal of $@
135 @if test -f $@; then :; else \
136 rm -f include/builddefs; \
35714853 137 $(MAKE) $(MAKEOPTS) $(AM_MAKEFLAGS) include/builddefs; \
2a519b73
BN
138 fi
139
91128e4c 140install: $(addsuffix -install,$(SUBDIRS))
fc49813f
NS
141 $(INSTALL) -m 755 -d $(PKG_DOC_DIR)
142 $(INSTALL) -m 644 README $(PKG_DOC_DIR)
143
91128e4c 144install-dev: $(addsuffix -install-dev,$(SUBDIRS))
2a519b73 145
2a519b73 146%-install:
91128e4c
DC
147 @echo "Installing $@"
148 $(Q)$(MAKE) $(MAKEOPTS) -C $* install
2a519b73
BN
149
150%-install-dev:
91128e4c
DC
151 @echo "Installing $@"
152 $(Q)$(MAKE) $(MAKEOPTS) -C $* install-dev
fc49813f 153
1eb10ccb 154distclean: clean
35714853 155 $(Q)rm -f $(LDIRT)
1eb10ccb
CH
156
157realclean: distclean
48212a30 158 $(Q)rm -f $(CONFIGURE) .gitcensus
10a41599
CH
159
160#
161# All this gunk is to allow for a make dist on an unconfigured tree
162#
163dist: include/builddefs include/platform_defs.h default
164ifeq ($(HAVE_BUILDDEFS), no)
35714853 165 $(Q)$(MAKE) $(MAKEOPTS) -C . $@
10a41599 166else
35714853 167 $(Q)$(MAKE) $(MAKEOPTS) $(SRCTAR)
10a41599
CH
168endif
169
170deb: include/builddefs include/platform_defs.h
171ifeq ($(HAVE_BUILDDEFS), no)
35714853 172 $(Q)$(MAKE) $(MAKEOPTS) -C . $@
10a41599 173else
8a70f64c
DC
174 # need to build translations before the source tarball
175 $(Q)$(MAKE) $(MAKEOPTS) -C po
35714853 176 $(Q)$(MAKE) $(MAKEOPTS) $(SRCDIR)
ec1cf08d
NS
177 $(Q)rm -f $(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
178 $(Q)$(LN_S) $(SRCTAR) $(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
179 $(Q)cd $(SRCDIR) && dpkg-buildpackage $$LOCAL_DPKG_OPTIONS # -sa -S
10a41599
CH
180endif
181
48212a30 182$(SRCDIR) : $(_FORCE) $(SRCTAR)
10a41599 183 rm -fr $@
48212a30 184 $(Q)$(TAR) -zxvf $(SRCTAR)
10a41599 185
48212a30
BM
186$(SRCTAR) : default $(SRCTARINC) .gitcensus
187 $(Q)$(TAR) --transform "s,^,$(SRCDIR)/," -zcf $(SRCDIR).tar.gz \
188 `cat .gitcensus` $(SRCTARINC)
10a41599 189 echo Wrote: $@
48212a30 190
1f31bd25
ES
191$(SRCTARXZ) : default $(SRCTARINC) .gitcensus
192 $(Q)$(TAR) --transform "s,^,$(SRCDIR)/," -Jcf $(SRCDIR).tar.xz \
193 `cat .gitcensus` $(SRCTARINC)
194 echo Wrote: $@
195
48212a30
BM
196.gitcensus: $(_FORCE)
197 $(Q)if test -d .git; then \
198 git ls-files > .gitcensus && echo "new .gitcensus"; \
199 fi