]> git.ipfire.org Git - thirdparty/util-linux.git/blame - Makefile.am
libfdisk: fix some typos
[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 =
fc22bff0 51TESTS =
8365ed42 52
d4baf92e
KZ
53PATHFILES =
54
f77a4d10
KZ
55INSTALL_EXEC_HOOKS =
56UNINSTALL_HOOKS =
57INSTALL_DATA_HOOKS =
ac73480a 58CLEAN_LOCALS =
1b03e2cd 59CHECK_LOCALS =
f77a4d10 60
4cf02b65 61EXTRA_DIST =
3632ce21
KZ
62CLEANFILES =
63
fb55280a 64SUBDIRS = po
44e293d6 65
8b416ca0 66RCS_FIND_IGNORE = \( -name SCCS -o -name BitKeeper -o -name .svn -o \
44e293d6
KZ
67 -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
68
48d7b13a
KZ
69ACLOCAL_AMFLAGS = -I m4
70
3632ce21 71EXTRA_DIST += \
f06b4328
SK
72 .version \
73 autogen.sh \
74 Documentation \
75 po/update-potfiles \
b53f8b8e
PU
76 README.licensing \
77 tools/git-version-gen
b8d1314d 78
8365ed42
KZ
79
80include include/Makemodule.am
e0ef609e 81include lib/Makemodule.am
3632ce21 82include libuuid/Makemodule.am
f77a4d10 83include libblkid/Makemodule.am
bc94024d 84include libmount/Makemodule.am
1a4d989e 85include libsmartcols/Makemodule.am
baa3b270 86include libfdisk/Makemodule.am
bc94024d
KZ
87
88include schedutils/Makemodule.am
22d2322e
KZ
89include text-utils/Makemodule.am
90include term-utils/Makemodule.am
ffeb2805 91include login-utils/Makemodule.am
8772f8d7 92include sys-utils/Makemodule.am
37b88bfc 93include misc-utils/Makemodule.am
54dbc8cf 94include disk-utils/Makemodule.am
8365ed42 95
20da5808 96include bash-completion/Makemodule.am
9cc36e9f 97
ac73480a
KZ
98include tests/Makemodule.am
99
d4baf92e
KZ
100#
101# Don't rely on configure.ac AC_CONFIG_FILES for install paths.
102#
103# The paths should be expanded at make time rather than configure:
104# - to support 'make install prefix=/foo DESTDIR=/foo'
105# - to recursively expands the paths (e.g. AC_CONFIG_FILES expands
106# '@usrsbin_execdir@' to ${exec_prefix}/sbin')
107#
108edit_cmd = sed \
109 -e 's|@prefix[@]|$(prefix)|g' \
110 -e 's|@exec_prefix[@]|$(exec_prefix)|g' \
111 -e 's|@sysconfdir[@]|$(sysconfdir)|g' \
112 -e 's|@datadir[@]|$(datadir)|g' \
113 -e 's|@sbindir[@]|$(sbindir)|g' \
114 -e 's|@bindir[@]|$(bindir)|g' \
115 -e 's|@includedir[@]|$(includedir)|g' \
116 -e 's|@localstatedir[@]|$(localstatedir)|g' \
117 -e 's|@usrlib_execdir[@]|$(usrlib_execdir)|g' \
118 -e 's|@usrbin_execdir[@]|$(usrbin_execdir)|g' \
119 -e 's|@usrsbin_execdir[@]|$(usrsbin_execdir)|g' \
120 -e 's|@VERSION[@]|$(VERSION)|g' \
2ad21963 121 -e 's|@ADJTIME_PATH[@]|$(ADJTIME_PATH)|g' \
d4baf92e
KZ
122 -e 's|@LIBUUID_VERSION[@]|$(LIBUUID_VERSION)|g' \
123 -e 's|@LIBMOUNT_VERSION[@]|$(LIBMOUNT_VERSION)|g' \
10e1d2e5
SH
124 -e 's|@LIBMOUNT_MAJOR_VERSION[@]|$(LIBMOUNT_MAJOR_VERSION)|g' \
125 -e 's|@LIBMOUNT_MINOR_VERSION[@]|$(LIBMOUNT_MINOR_VERSION)|g' \
126 -e 's|@LIBMOUNT_PATCH_VERSION[@]|$(LIBMOUNT_PATCH_VERSION)|g' \
14697360 127 -e 's|@LIBSMARTCOLS_VERSION[@]|$(LIBSMARTCOLS_VERSION)|g' \
ed79557e
KZ
128 -e 's|@LIBFDISK_PC_REQUIRES[@]|$(LIBFDISK_PC_REQUIRES)|g' \
129 -e 's|@LIBFDISK_VERSION[@]|$(LIBFDISK_VERSION)|g' \
d4baf92e
KZ
130 -e 's|@LIBBLKID_VERSION[@]|$(LIBBLKID_VERSION)|g'
131
132CLEANFILES += $(PATHFILES)
133EXTRA_DIST += $(PATHFILES:=.in)
134
135$(PATHFILES): Makefile
136 @ rm -f $@ $@.tmp
cb52ac98 137 $(AM_V_at) test -d $(dir $@) || mkdir -p $(dir $@)
d4baf92e
KZ
138 $(AM_V_GEN) srcdir=''; \
139 test -f ./$@.in || srcdir=$(srcdir)/; \
140 $(edit_cmd) $${srcdir}$@.in >$@.tmp
141 @ mv $@.tmp $@
142
38c75b59
SK
143# Arrange so that .tarball-version appears only in the distribution
144# tarball, and never in a checked-out repository.
145dist-hook:
146 echo $(VERSION) > $(distdir)/.tarball-version
2b85ab88
SK
147# Set ChangeLog tag reference.
148 sed -i "s/log/log;h=$(VERSION)/" $(distdir)/ChangeLog
baf39af1
KZ
149
150distclean-local:
0b9f737e 151 -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
baf39af1 152 rm -rf autom4te.cache
8eeb575c 153
44e293d6
KZ
154
155checkincludes:
043102bf 156 @find * $(RCS_FIND_IGNORE) \
44e293d6
KZ
157 -name '*.[hcS]' -type f -print | sort -u \
158 | xargs $(top_srcdir)/tools/checkincludes.pl
159
043102bf
KZ
160checkconfig:
161 @find * $(RCS_FIND_IGNORE) \
162 -name '*.[hcS]' -type f -print | sort -u \
163 | xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)
164
ea6c96fb
SK
165checkmans:
166 @$(top_srcdir)/tools/checkmans.sh
167
d05a3e97
KZ
168checkxalloc:
169 @ $(top_srcdir)/tools/checkxalloc.sh
44e293d6 170
b5c6f486
KZ
171checkdecl:
172 @ $(top_srcdir)/tools/checkdecl.sh
173
f339d2a5
RM
174DISTCHECK_CONFIGURE_FLAGS = \
175 --disable-use-tty-group \
176 --disable-silent-rules \
177 --enable-all-programs \
178 --enable-static-programs \
179 --enable-gtk-doc \
180 --with-python \
181 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
182 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
38c75b59
SK
183
184BUILT_SOURCES = .version
185.version:
186 echo $(VERSION) > $@-t && mv $@-t $@
187
47fb1079 188CHANGELOG_FILE = v$(VERSION)-ChangeLog
748c010f
KZ
189
190$(CHANGELOG_FILE):
191 @ if test "x$$PREVIOUS_VERSION" == "x"; then \
47fb1079
KZ
192 echo "Usage make changelog PREVIOUS_VERSION=<version>"; \
193 exit 1; \
194 fi
195 @ echo "Changes between v$(PREVIOUS_VERSION) and v$(VERSION)" > $(CHANGELOG_FILE)
196 @ echo "--------------------------------------------" >> $(CHANGELOG_FILE)
197 @ echo >> $(CHANGELOG_FILE)
198 $(AM_V_GEN) git log --stat v$(PREVIOUS_VERSION)..HEAD >> $(CHANGELOG_FILE)
fb55280a
KZ
199#
200#
201# smatch scan -- smatch and cgcc are expected in $PATH
202#
203checksmatch:
204 $(MAKE) CHECK="smatch --data=$(abs_top_srcdir)/tools/smatch-data" CC=cgcc
47fb1079 205
748c010f
KZ
206changelog: $(CHANGELOG_FILE)
207
f77a4d10
KZ
208install-exec-hook: $(INSTALL_EXEC_HOOKS)
209
210uninstall-hook: $(UNINSTALL_HOOKS)
211
212install-data-hook: $(INSTALL_DATA_HOOKS)
748c010f 213
ac73480a 214clean-local: $(CLEAN_LOCALS)
1b03e2cd
KZ
215
216check-local: $(CHECK_LOCALS)