]> git.ipfire.org Git - thirdparty/util-linux.git/blob - Makefile.am
Merge branch '2016-03-02/cgns' of https://github.com/hallyn/util-linux
[thirdparty/util-linux.git] / Makefile.am
1 AM_CPPFLAGS = \
2 -include config.h \
3 -I$(top_srcdir)/include \
4 -DLOCALEDIR=\"$(localedir)\" \
5 -D_PATH_LOCALSTATEDIR=\"${localstatedir}\"
6 AM_CFLAGS = -fsigned-char $(WARN_CFLAGS)
7 AM_LDFLAGS =
8
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 #
12 LDADD = $(LTLIBINTL)
13
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:
18 dist_noinst_DATA = $(dist_man_MANS)
19
20 # Paths to in-tree libraries (use ul_ prefix to avoid possible collisions) Note
21 # that blkid.h, libmount.h, libfdisk.h and libsmartcols.h are generated and
22 # stored in build dirs.
23 #
24 ul_libblkid_incdir = $(top_builddir)/libblkid/src
25 ul_libmount_incdir = $(top_builddir)/libmount/src
26 ul_libsmartcols_incdir = $(top_builddir)/libsmartcols/src
27 ul_libfdisk_incdir = $(top_builddir)/libfdisk/src
28
29 ul_libuuid_incdir = $(top_srcdir)/libuuid/src
30
31 pkgconfigdir = $(usrlib_execdir)/pkgconfig
32
33 bashcompletiondir = @bashcompletiondir@
34
35 dist_noinst_HEADERS =
36 noinst_PROGRAMS =
37 noinst_LTLIBRARIES =
38 usrbin_exec_PROGRAMS =
39 usrsbin_exec_PROGRAMS =
40 dist_man_MANS =
41 man_MANS =
42 pkgconfig_DATA =
43 usrlib_exec_LTLIBRARIES =
44 bin_PROGRAMS =
45 sbin_PROGRAMS =
46 dist_usrbin_exec_SCRIPTS =
47 systemdsystemunit_DATA =
48 dist_bashcompletion_DATA =
49 check_PROGRAMS =
50 dist_check_SCRIPTS =
51
52 PATHFILES =
53
54 INSTALL_EXEC_HOOKS =
55 UNINSTALL_HOOKS =
56 INSTALL_DATA_HOOKS =
57 CLEAN_LOCALS =
58 CHECK_LOCALS =
59
60 EXTRA_DIST =
61 CLEANFILES =
62
63 SUBDIRS = po
64
65 RCS_FIND_IGNORE = \( -name SCCS -o -name BitKeeper -o -name .svn -o \
66 -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
67
68 ACLOCAL_AMFLAGS = -I m4
69
70 EXTRA_DIST += \
71 .version \
72 autogen.sh \
73 Documentation \
74 po/update-potfiles \
75 README.licensing \
76 tools/git-version-gen
77
78
79 include include/Makemodule.am
80 include lib/Makemodule.am
81 include libuuid/Makemodule.am
82 include libblkid/Makemodule.am
83 include libmount/Makemodule.am
84 include libsmartcols/Makemodule.am
85 include libfdisk/Makemodule.am
86
87 include schedutils/Makemodule.am
88 include text-utils/Makemodule.am
89 include term-utils/Makemodule.am
90 include login-utils/Makemodule.am
91 include sys-utils/Makemodule.am
92 include misc-utils/Makemodule.am
93 include disk-utils/Makemodule.am
94
95 include bash-completion/Makemodule.am
96
97 include tests/Makemodule.am
98
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
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 #
115 edit_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' \
128 -e 's|@ADJTIME_PATH[@]|$(ADJTIME_PATH)|g' \
129 -e 's|@LIBUUID_VERSION[@]|$(LIBUUID_VERSION)|g' \
130 -e 's|@LIBMOUNT_VERSION[@]|$(LIBMOUNT_VERSION)|g' \
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' \
134 -e 's|@LIBSMARTCOLS_VERSION[@]|$(LIBSMARTCOLS_VERSION)|g' \
135 -e 's|@LIBFDISK_PC_REQUIRES[@]|$(LIBFDISK_PC_REQUIRES)|g' \
136 -e 's|@LIBFDISK_VERSION[@]|$(LIBFDISK_VERSION)|g' \
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' \
140 -e 's|@LIBBLKID_VERSION[@]|$(LIBBLKID_VERSION)|g'
141
142 CLEANFILES += $(PATHFILES)
143 EXTRA_DIST += $(PATHFILES:=.in)
144
145 $(PATHFILES): Makefile
146 @ rm -f $@ $@.tmp
147 $(AM_V_at) $(MKDIR_P) $$(dirname $@)
148 $(AM_V_GEN) srcdir=''; \
149 test -f ./$@.in || srcdir=$(srcdir)/; \
150 $(edit_cmd) $${srcdir}$@.in >$@.tmp
151 @ mv $@.tmp $@
152
153 # Arrange so that .tarball-version appears only in the distribution
154 # tarball, and never in a checked-out repository.
155 dist-hook:
156 echo $(VERSION) > $(distdir)/.tarball-version
157 # Set ChangeLog tag reference.
158 sed -i "s/log/log;h=$(VERSION)/" $(distdir)/ChangeLog
159
160 distclean-local:
161 -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
162 rm -rf autom4te.cache
163
164
165 checkincludes:
166 @find * $(RCS_FIND_IGNORE) \
167 -name '*.[hcS]' -type f -print | sort -u \
168 | xargs $(top_srcdir)/tools/checkincludes.pl
169
170 checkconfig:
171 @find * $(RCS_FIND_IGNORE) \
172 -name '*.[hcS]' -type f -print | sort -u \
173 | xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)
174
175 checkmans:
176 @$(top_srcdir)/tools/checkmans.sh
177
178 checkxalloc:
179 @ $(top_srcdir)/tools/checkxalloc.sh
180
181 checkdecl:
182 @ $(top_srcdir)/tools/checkdecl.sh
183
184 checkcompletion:
185 @ $(top_srcdir)/tools/checkcompletion.sh $(top_srcdir)
186
187 DISTCHECK_CONFIGURE_FLAGS = \
188 --disable-use-tty-group \
189 --disable-silent-rules \
190 --enable-all-programs \
191 --enable-static-programs \
192 --enable-gtk-doc \
193 --with-python \
194 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
195 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
196
197 BUILT_SOURCES = .version
198 .version:
199 echo $(VERSION) > $@-t && mv $@-t $@
200
201 CHANGELOG_FILE = v$(VERSION)-ChangeLog
202
203 $(CHANGELOG_FILE):
204 @ if test "x$$PREVIOUS_VERSION" == "x"; then \
205 echo "Usage make changelog PREVIOUS_VERSION=<version>"; \
206 exit 1; \
207 fi
208 @ echo "Changes between v$(PREVIOUS_VERSION) and v$(VERSION)" > $(CHANGELOG_FILE)
209 @ echo "--------------------------------------------" >> $(CHANGELOG_FILE)
210 @ echo >> $(CHANGELOG_FILE)
211 $(AM_V_GEN) git log --stat v$(PREVIOUS_VERSION)..HEAD >> $(CHANGELOG_FILE)
212 #
213 #
214 # smatch scan -- smatch and cgcc are expected in $PATH
215 #
216 checksmatch:
217 $(MAKE) CHECK="smatch --data=$(abs_top_srcdir)/tools/smatch-data" CC=cgcc
218
219 changelog: $(CHANGELOG_FILE)
220
221 install-exec-hook: $(INSTALL_EXEC_HOOKS)
222
223 uninstall-hook: $(UNINSTALL_HOOKS)
224
225 install-data-hook: $(INSTALL_DATA_HOOKS)
226
227 clean-local: $(CLEAN_LOCALS)
228
229 check-local: $(CHECK_LOCALS)