]> git.ipfire.org Git - thirdparty/util-linux.git/blame - Makefile.am
Merge branch 'travis-osx' of https://github.com/rudimeier/util-linux
[thirdparty/util-linux.git] / Makefile.am
CommitLineData
fb55280a
KZ
1AM_CPPFLAGS = \
2 -include config.h \
3 -I$(top_srcdir)/include \
07a16b9d
SK
4 -DLOCALEDIR=\"$(localedir)\" \
5 -D_PATH_LOCALSTATEDIR=\"${localstatedir}\"
fb55280a
KZ
6AM_CFLAGS = -fsigned-char $(WARN_CFLAGS)
7AM_LDFLAGS =
8
7bce71a3
KZ
9# Add gettext stuff to the global LDADD for systems with separate libintl
10# library. The LTLIBINTL is generated by AM_GNU_GETTEXT macro.
11#
12LDADD = $(LTLIBINTL)
13
fb55280a
KZ
14# Automake (at least up to 1.10) mishandles dist_man_MANS inside conditionals.
15# Unlike with other dist primaries, the files are not distributed if the
16# conditional is false.
17# Work the bug around until it is fixed:
18dist_noinst_DATA = $(dist_man_MANS)
19
1a4d989e 20# Paths to in-tree libraries (use ul_ prefix to avoid possible collisions) Note
0bb4c979
KZ
21# that blkid.h, libmount.h, libfdisk.h and libsmartcols.h are generated and
22# stored in build dirs.
fb55280a
KZ
23#
24ul_libblkid_incdir = $(top_builddir)/libblkid/src
25ul_libmount_incdir = $(top_builddir)/libmount/src
1a4d989e 26ul_libsmartcols_incdir = $(top_builddir)/libsmartcols/src
0bb4c979
KZ
27ul_libfdisk_incdir = $(top_builddir)/libfdisk/src
28
fb55280a 29ul_libuuid_incdir = $(top_srcdir)/libuuid/src
48d7b13a 30
3632ce21
KZ
31pkgconfigdir = $(usrlib_execdir)/pkgconfig
32
9cc36e9f
SK
33bashcompletiondir = @bashcompletiondir@
34
8365ed42 35dist_noinst_HEADERS =
e0ef609e 36noinst_PROGRAMS =
f77a4d10 37noinst_LTLIBRARIES =
5ed5df5d 38usrbin_exec_PROGRAMS =
ffeb2805 39usrsbin_exec_PROGRAMS =
5ed5df5d 40dist_man_MANS =
3632ce21
KZ
41man_MANS =
42pkgconfig_DATA =
43usrlib_exec_LTLIBRARIES =
22d2322e
KZ
44bin_PROGRAMS =
45sbin_PROGRAMS =
46dist_usrbin_exec_SCRIPTS =
37b88bfc 47systemdsystemunit_DATA =
ac6a37c8 48dist_bashcompletion_DATA =
922e6775 49check_PROGRAMS =
15b2606c 50dist_check_SCRIPTS =
8365ed42 51
d4baf92e
KZ
52PATHFILES =
53
f77a4d10
KZ
54INSTALL_EXEC_HOOKS =
55UNINSTALL_HOOKS =
56INSTALL_DATA_HOOKS =
ac73480a 57CLEAN_LOCALS =
1b03e2cd 58CHECK_LOCALS =
f77a4d10 59
4cf02b65 60EXTRA_DIST =
3632ce21
KZ
61CLEANFILES =
62
fb55280a 63SUBDIRS = po
44e293d6 64
8b416ca0 65RCS_FIND_IGNORE = \( -name SCCS -o -name BitKeeper -o -name .svn -o \
44e293d6
KZ
66 -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
67
48d7b13a
KZ
68ACLOCAL_AMFLAGS = -I m4
69
3632ce21 70EXTRA_DIST += \
f06b4328
SK
71 .version \
72 autogen.sh \
73 Documentation \
74 po/update-potfiles \
b53f8b8e
PU
75 README.licensing \
76 tools/git-version-gen
b8d1314d 77
8365ed42
KZ
78
79include include/Makemodule.am
e0ef609e 80include lib/Makemodule.am
3632ce21 81include libuuid/Makemodule.am
f77a4d10 82include libblkid/Makemodule.am
bc94024d 83include libmount/Makemodule.am
1a4d989e 84include libsmartcols/Makemodule.am
baa3b270 85include libfdisk/Makemodule.am
bc94024d
KZ
86
87include schedutils/Makemodule.am
22d2322e
KZ
88include text-utils/Makemodule.am
89include term-utils/Makemodule.am
ffeb2805 90include login-utils/Makemodule.am
8772f8d7 91include sys-utils/Makemodule.am
37b88bfc 92include misc-utils/Makemodule.am
54dbc8cf 93include disk-utils/Makemodule.am
8365ed42 94
20da5808 95include bash-completion/Makemodule.am
9cc36e9f 96
ac73480a
KZ
97include tests/Makemodule.am
98
324330ac
FB
99# pylibmountexec module must be installed after usrlib_exec libraries,
100# otherwise the libtool relink step will fail to find libmount.la and
101# will try -lmount which is possibly not available.
102#
103# So introduce this dependency rule:
104# install-pylibmountexecLTLIBRARIES: install-usrlib_execLTLIBRARIES
105@verbatim_pylibmount_dependency@
106
d4baf92e
KZ
107#
108# Don't rely on configure.ac AC_CONFIG_FILES for install paths.
109#
110# The paths should be expanded at make time rather than configure:
111# - to support 'make install prefix=/foo DESTDIR=/foo'
112# - to recursively expands the paths (e.g. AC_CONFIG_FILES expands
113# '@usrsbin_execdir@' to ${exec_prefix}/sbin')
114#
115edit_cmd = sed \
116 -e 's|@prefix[@]|$(prefix)|g' \
117 -e 's|@exec_prefix[@]|$(exec_prefix)|g' \
118 -e 's|@sysconfdir[@]|$(sysconfdir)|g' \
119 -e 's|@datadir[@]|$(datadir)|g' \
120 -e 's|@sbindir[@]|$(sbindir)|g' \
121 -e 's|@bindir[@]|$(bindir)|g' \
122 -e 's|@includedir[@]|$(includedir)|g' \
123 -e 's|@localstatedir[@]|$(localstatedir)|g' \
124 -e 's|@usrlib_execdir[@]|$(usrlib_execdir)|g' \
125 -e 's|@usrbin_execdir[@]|$(usrbin_execdir)|g' \
126 -e 's|@usrsbin_execdir[@]|$(usrsbin_execdir)|g' \
127 -e 's|@VERSION[@]|$(VERSION)|g' \
2ad21963 128 -e 's|@ADJTIME_PATH[@]|$(ADJTIME_PATH)|g' \
d4baf92e
KZ
129 -e 's|@LIBUUID_VERSION[@]|$(LIBUUID_VERSION)|g' \
130 -e 's|@LIBMOUNT_VERSION[@]|$(LIBMOUNT_VERSION)|g' \
10e1d2e5
SH
131 -e 's|@LIBMOUNT_MAJOR_VERSION[@]|$(LIBMOUNT_MAJOR_VERSION)|g' \
132 -e 's|@LIBMOUNT_MINOR_VERSION[@]|$(LIBMOUNT_MINOR_VERSION)|g' \
133 -e 's|@LIBMOUNT_PATCH_VERSION[@]|$(LIBMOUNT_PATCH_VERSION)|g' \
14697360 134 -e 's|@LIBSMARTCOLS_VERSION[@]|$(LIBSMARTCOLS_VERSION)|g' \
ed79557e
KZ
135 -e 's|@LIBFDISK_PC_REQUIRES[@]|$(LIBFDISK_PC_REQUIRES)|g' \
136 -e 's|@LIBFDISK_VERSION[@]|$(LIBFDISK_VERSION)|g' \
791da22d
KZ
137 -e 's|@LIBFDISK_MAJOR_VERSION[@]|$(LIBFDISK_MAJOR_VERSION)|g' \
138 -e 's|@LIBFDISK_MINOR_VERSION[@]|$(LIBFDISK_MINOR_VERSION)|g' \
139 -e 's|@LIBFDISK_PATCH_VERSION[@]|$(LIBFDISK_PATCH_VERSION)|g' \
d4baf92e
KZ
140 -e 's|@LIBBLKID_VERSION[@]|$(LIBBLKID_VERSION)|g'
141
142CLEANFILES += $(PATHFILES)
143EXTRA_DIST += $(PATHFILES:=.in)
144
145$(PATHFILES): Makefile
146 @ rm -f $@ $@.tmp
18336d16 147 $(AM_V_at) $(MKDIR_P) $$(dirname $@)
d4baf92e
KZ
148 $(AM_V_GEN) srcdir=''; \
149 test -f ./$@.in || srcdir=$(srcdir)/; \
150 $(edit_cmd) $${srcdir}$@.in >$@.tmp
151 @ mv $@.tmp $@
152
38c75b59
SK
153# Arrange so that .tarball-version appears only in the distribution
154# tarball, and never in a checked-out repository.
155dist-hook:
156 echo $(VERSION) > $(distdir)/.tarball-version
2b85ab88
SK
157# Set ChangeLog tag reference.
158 sed -i "s/log/log;h=$(VERSION)/" $(distdir)/ChangeLog
baf39af1
KZ
159
160distclean-local:
0b9f737e 161 -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
baf39af1 162 rm -rf autom4te.cache
8eeb575c 163
44e293d6
KZ
164
165checkincludes:
043102bf 166 @find * $(RCS_FIND_IGNORE) \
44e293d6
KZ
167 -name '*.[hcS]' -type f -print | sort -u \
168 | xargs $(top_srcdir)/tools/checkincludes.pl
169
043102bf
KZ
170checkconfig:
171 @find * $(RCS_FIND_IGNORE) \
172 -name '*.[hcS]' -type f -print | sort -u \
173 | xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)
174
ea6c96fb
SK
175checkmans:
176 @$(top_srcdir)/tools/checkmans.sh
177
d05a3e97
KZ
178checkxalloc:
179 @ $(top_srcdir)/tools/checkxalloc.sh
44e293d6 180
b5c6f486
KZ
181checkdecl:
182 @ $(top_srcdir)/tools/checkdecl.sh
183
f339d2a5
RM
184DISTCHECK_CONFIGURE_FLAGS = \
185 --disable-use-tty-group \
186 --disable-silent-rules \
187 --enable-all-programs \
f63faced 188 --enable-static-programs \
f339d2a5
RM
189 --enable-gtk-doc \
190 --with-python \
191 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
192 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
38c75b59
SK
193
194BUILT_SOURCES = .version
195.version:
196 echo $(VERSION) > $@-t && mv $@-t $@
197
47fb1079 198CHANGELOG_FILE = v$(VERSION)-ChangeLog
748c010f
KZ
199
200$(CHANGELOG_FILE):
201 @ if test "x$$PREVIOUS_VERSION" == "x"; then \
47fb1079
KZ
202 echo "Usage make changelog PREVIOUS_VERSION=<version>"; \
203 exit 1; \
204 fi
205 @ echo "Changes between v$(PREVIOUS_VERSION) and v$(VERSION)" > $(CHANGELOG_FILE)
206 @ echo "--------------------------------------------" >> $(CHANGELOG_FILE)
207 @ echo >> $(CHANGELOG_FILE)
208 $(AM_V_GEN) git log --stat v$(PREVIOUS_VERSION)..HEAD >> $(CHANGELOG_FILE)
fb55280a
KZ
209#
210#
211# smatch scan -- smatch and cgcc are expected in $PATH
212#
213checksmatch:
214 $(MAKE) CHECK="smatch --data=$(abs_top_srcdir)/tools/smatch-data" CC=cgcc
47fb1079 215
748c010f
KZ
216changelog: $(CHANGELOG_FILE)
217
f77a4d10
KZ
218install-exec-hook: $(INSTALL_EXEC_HOOKS)
219
220uninstall-hook: $(UNINSTALL_HOOKS)
221
222install-data-hook: $(INSTALL_DATA_HOOKS)
748c010f 223
ac73480a 224clean-local: $(CLEAN_LOCALS)
1b03e2cd
KZ
225
226check-local: $(CHECK_LOCALS)