]> git.ipfire.org Git - thirdparty/util-linux.git/blob - Makefile.am
dmesg: add --follow-new
[thirdparty/util-linux.git] / Makefile.am
1 AM_CPPFLAGS = \
2 -include config.h \
3 -I$(top_srcdir)/include \
4 -DLOCALEDIR=\"$(localedir)\" \
5 -D_PATH_RUNSTATEDIR=\"${runstatedir}\" \
6 -D_PATH_SYSCONFSTATICDIR=\"${sysconfstaticdir}\"
7
8 if USE_VENDORDIR
9 AM_CPPFLAGS += \
10 -D_PATH_VENDORDIR=\"${vendordir}\"
11 endif
12
13 AM_CFLAGS = -fsigned-char $(WARN_CFLAGS)
14 AM_LDFLAGS = $(ASAN_LDFLAGS)
15
16 # Add gettext stuff to the global LDADD for systems with separate libintl
17 # library. The LTLIBINTL is generated by AM_GNU_GETTEXT macro.
18 #
19 LDADD = $(LTLIBINTL)
20
21 # Automake (at least up to 1.10) mishandles dist_man_MANS inside conditionals.
22 # Unlike with other dist primaries, the files are not distributed if the
23 # conditional is false.
24 # Work the bug around until it is fixed:
25 dist_noinst_DATA = $(dist_man_MANS)
26
27 # Paths to in-tree libraries (use ul_ prefix to avoid possible collisions) Note
28 # that blkid.h, libmount.h, libfdisk.h and libsmartcols.h are generated and
29 # stored in build dirs.
30 #
31 ul_libblkid_incdir = $(top_builddir)/libblkid/src
32 ul_libmount_incdir = $(top_builddir)/libmount/src
33 ul_libsmartcols_incdir = $(top_builddir)/libsmartcols/src
34 ul_libfdisk_incdir = $(top_builddir)/libfdisk/src
35
36 ul_libuuid_incdir = $(top_srcdir)/libuuid/src
37
38 bashcompletiondir = @bashcompletiondir@
39
40 dist_noinst_HEADERS =
41 noinst_PROGRAMS =
42 noinst_LTLIBRARIES =
43 usrbin_exec_PROGRAMS =
44 usrsbin_exec_PROGRAMS =
45 dist_man_MANS =
46 man_MANS =
47 pkgconfig_DATA =
48 usrlib_exec_LTLIBRARIES =
49 bin_PROGRAMS =
50 sbin_PROGRAMS =
51 dist_usrbin_exec_SCRIPTS =
52 systemdsystemunit_DATA =
53 dist_bashcompletion_DATA =
54 check_PROGRAMS =
55 dist_check_SCRIPTS =
56
57 PATHFILES =
58
59 INSTALL_EXEC_HOOKS =
60 UNINSTALL_HOOKS =
61 INSTALL_DATA_HOOKS =
62 CLEAN_LOCALS =
63 CHECK_LOCALS =
64
65 EXTRA_DIST =
66 CLEANFILES =
67
68 SUBDIRS = po
69
70 RCS_FIND_IGNORE = \( -name SCCS -o -name BitKeeper -o -name .svn -o \
71 -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
72
73 ACLOCAL_AMFLAGS = -I m4
74
75 EXTRA_DIST += \
76 .version \
77 autogen.sh \
78 Documentation \
79 po/update-potfiles \
80 README.licensing
81
82 include tools/Makemodule.am
83 include include/Makemodule.am
84 include lib/Makemodule.am
85 include libuuid/Makemodule.am
86 include libblkid/Makemodule.am
87 include libmount/Makemodule.am
88 include libsmartcols/Makemodule.am
89 include libfdisk/Makemodule.am
90
91 include schedutils/Makemodule.am
92 include text-utils/Makemodule.am
93 include term-utils/Makemodule.am
94 include login-utils/Makemodule.am
95 include sys-utils/Makemodule.am
96 include misc-utils/Makemodule.am
97 include disk-utils/Makemodule.am
98
99 include bash-completion/Makemodule.am
100
101 include tests/Makemodule.am
102
103 # pylibmountexec module must be installed after usrlib_exec libraries,
104 # otherwise the libtool relink step will fail to find libmount.la and
105 # will try -lmount which is possibly not available.
106 #
107 # So introduce this dependency rule:
108 # install-pylibmountexecLTLIBRARIES: install-usrlib_execLTLIBRARIES
109 @verbatim_pylibmount_dependency@
110
111 #
112 # Don't rely on configure.ac AC_CONFIG_FILES for install paths.
113 #
114 # The paths should be expanded at make time rather than configure:
115 # - to support 'make install prefix=/foo DESTDIR=/foo'
116 # - to recursively expands the paths (e.g. AC_CONFIG_FILES expands
117 # '@usrsbin_execdir@' to ${exec_prefix}/sbin')
118 #
119 edit_cmd = sed \
120 -e 's|@prefix[@]|$(prefix)|g' \
121 -e 's|@exec_prefix[@]|$(exec_prefix)|g' \
122 -e 's|@sysconfdir[@]|$(sysconfdir)|g' \
123 -e 's|@datadir[@]|$(datadir)|g' \
124 -e 's|@sbindir[@]|$(sbindir)|g' \
125 -e 's|@bindir[@]|$(bindir)|g' \
126 -e 's|@docdir[@]|$(docdir)|g' \
127 -e 's|@includedir[@]|$(includedir)|g' \
128 -e 's|@runstatedir[@]|$(runstatedir)|g' \
129 -e 's|@usrlib_execdir[@]|$(usrlib_execdir)|g' \
130 -e 's|@usrbin_execdir[@]|$(usrbin_execdir)|g' \
131 -e 's|@usrsbin_execdir[@]|$(usrsbin_execdir)|g' \
132 -e 's|@VERSION[@]|$(VERSION)|g' \
133 -e 's|@ADJTIME_PATH[@]|$(ADJTIME_PATH)|g' \
134 -e 's|@LIBUUID_VERSION[@]|$(LIBUUID_VERSION)|g' \
135 -e 's|@LIBMOUNT_VERSION[@]|$(LIBMOUNT_VERSION)|g' \
136 -e 's|@LIBMOUNT_MAJOR_VERSION[@]|$(LIBMOUNT_MAJOR_VERSION)|g' \
137 -e 's|@LIBMOUNT_MINOR_VERSION[@]|$(LIBMOUNT_MINOR_VERSION)|g' \
138 -e 's|@LIBMOUNT_PATCH_VERSION[@]|$(LIBMOUNT_PATCH_VERSION)|g' \
139 -e 's|@LIBSMARTCOLS_VERSION[@]|$(LIBSMARTCOLS_VERSION)|g' \
140 -e 's|@LIBFDISK_PC_REQUIRES[@]|$(LIBFDISK_PC_REQUIRES)|g' \
141 -e 's|@LIBFDISK_VERSION[@]|$(LIBFDISK_VERSION)|g' \
142 -e 's|@LIBFDISK_MAJOR_VERSION[@]|$(LIBFDISK_MAJOR_VERSION)|g' \
143 -e 's|@LIBFDISK_MINOR_VERSION[@]|$(LIBFDISK_MINOR_VERSION)|g' \
144 -e 's|@LIBFDISK_PATCH_VERSION[@]|$(LIBFDISK_PATCH_VERSION)|g' \
145 -e 's|@LIBBLKID_VERSION[@]|$(LIBBLKID_VERSION)|g'
146
147 if HAVE_SELINUX
148 edit_cmd += -e 's|@LIBSELINUX[@]|libselinux|g'
149 else
150 edit_cmd += -e 's|@LIBSELINUX[@]||g'
151 endif
152
153 if HAVE_CRYPTSETUP
154 edit_cmd += -e 's|@LIBCRYPTSETUP[@]|libcryptsetup|g'
155 else
156 edit_cmd += -e 's|@LIBCRYPTSETUP[@]||g'
157 endif
158
159 if USE_VENDORDIR
160 edit_cmd += -e 's|@vendordir[@]|$(vendordir)|g'
161 else
162 edit_cmd += -e 's|@vendordir[@]||g'
163 endif
164
165 CLEANFILES += $(PATHFILES)
166 EXTRA_DIST += $(PATHFILES:=.in)
167
168 $(PATHFILES): Makefile
169 @ rm -f $@ $@.tmp
170 $(AM_V_at) $(MKDIR_P) $$(dirname $@)
171 $(AM_V_GEN) srcdir=''; \
172 test -f ./$@.in || srcdir=$(srcdir)/; \
173 $(edit_cmd) $${srcdir}$@.in >$@.tmp
174 @ mv $@.tmp $@
175
176 # Arrange so that .tarball-version appears only in the distribution
177 # tarball, and never in a checked-out repository.
178 dist-hook:
179 echo $(VERSION) > $(distdir)/.tarball-version
180 # Set ChangeLog tag reference.
181 sed -i "s!log!log?h=v$(VERSION)!" $(distdir)/ChangeLog
182
183 distclean-local:
184 -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
185 rm -rf autom4te.cache
186
187
188 checkincludes:
189 @find * $(RCS_FIND_IGNORE) \
190 -name '*.[hcS]' -type f -print | sort -u \
191 | xargs $(top_srcdir)/tools/checkincludes.pl
192
193 checkconfig:
194 @find * $(RCS_FIND_IGNORE) \
195 -name '*.[hcS]' -type f -print | sort -u \
196 | xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)
197
198 checkmans:
199 @$(top_srcdir)/tools/checkmans.sh
200
201 checkxalloc:
202 @ $(top_srcdir)/tools/checkxalloc.sh
203
204 checkdecl:
205 @ $(top_srcdir)/tools/checkdecl.sh
206
207 checkcompletion:
208 @ $(top_srcdir)/tools/checkcompletion.sh $(top_srcdir)
209
210 checkusage:
211 @ $(top_srcdir)/tools/checkusage.sh \
212 $(bin_PROGRAMS) $(sbin_PROGRAMS) \
213 $(usrbin_exec_PROGRAMS) $(usrsbin_exec_PROGRAMS)
214 checklibdoc:
215 @ $(top_srcdir)/tools/checklibdocs.sh \
216 $(top_srcdir)/libmount/src/libmount.sym \
217 $(top_srcdir)/libmount/docs/libmount-sections.txt
218 @ $(top_srcdir)/tools/checklibdocs.sh \
219 $(top_srcdir)/libfdisk/src/libfdisk.sym \
220 $(top_srcdir)/libfdisk/docs/libfdisk-sections.txt
221 @ $(top_srcdir)/tools/checklibdocs.sh \
222 $(top_srcdir)/libsmartcols/src/libsmartcols.sym \
223 $(top_srcdir)/libsmartcols/docs/libsmartcols-sections.txt
224 @ $(top_srcdir)/tools/checklibdocs.sh \
225 $(top_srcdir)/libblkid/src/libblkid.sym \
226 $(top_srcdir)/libblkid/docs/libblkid-sections.txt
227
228 DISTCHECK_CONFIGURE_FLAGS = \
229 --disable-use-tty-group \
230 --disable-silent-rules \
231 --enable-all-programs \
232 --disable-makeinstall-chown \
233 --enable-static-programs \
234 --enable-gtk-doc \
235 --with-python \
236 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
237 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
238
239 BUILT_SOURCES = .version
240 .version:
241 echo $(VERSION) > $@-t && mv $@-t $@
242
243 CHANGELOG_FILE = v$(VERSION)-ChangeLog
244
245 $(CHANGELOG_FILE):
246 @ if test "x$$PREVIOUS_VERSION" == "x"; then \
247 echo "Usage make changelog PREVIOUS_VERSION=<version>"; \
248 exit 1; \
249 fi
250 @ echo "Changes between v$(PREVIOUS_VERSION) and v$(VERSION)" > $(CHANGELOG_FILE)
251 @ echo "--------------------------------------------" >> $(CHANGELOG_FILE)
252 @ echo >> $(CHANGELOG_FILE)
253 $(AM_V_GEN) git log --stat v$(PREVIOUS_VERSION)..HEAD >> $(CHANGELOG_FILE)
254 #
255 #
256 # smatch scan -- smatch and cgcc are expected in $PATH
257 #
258 checksmatch:
259 $(MAKE) CHECK="smatch --data=$(abs_top_srcdir)/tools/smatch-data" CC=cgcc
260
261 check-programs: $(check_PROGRAMS)
262
263 changelog: $(CHANGELOG_FILE)
264
265 install-exec-hook: $(INSTALL_EXEC_HOOKS)
266
267 uninstall-hook: $(UNINSTALL_HOOKS)
268
269 install-data-hook: $(INSTALL_DATA_HOOKS)
270
271 clean-local: $(CLEAN_LOCALS)
272
273 check-local: $(CHECK_LOCALS)