]> git.ipfire.org Git - thirdparty/util-linux.git/blob - Makefile.am
Merge branch 'master' of https://github.com/rudimeier/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 and libsmartcols.h are generated and stored in build
22 # 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_libuuid_incdir = $(top_srcdir)/libuuid/src
28 ul_libfdisk_incdir = $(top_srcdir)/libfdisk/src
29
30 pkgconfigdir = $(usrlib_execdir)/pkgconfig
31
32 bashcompletiondir = @bashcompletiondir@
33
34 dist_noinst_HEADERS =
35 noinst_PROGRAMS =
36 noinst_LTLIBRARIES =
37 usrbin_exec_PROGRAMS =
38 usrsbin_exec_PROGRAMS =
39 dist_man_MANS =
40 man_MANS =
41 pkgconfig_DATA =
42 usrlib_exec_LTLIBRARIES =
43 bin_PROGRAMS =
44 sbin_PROGRAMS =
45 dist_usrbin_exec_SCRIPTS =
46 systemdsystemunit_DATA =
47 dist_bashcompletion_DATA =
48 check_PROGRAMS =
49 TESTS =
50
51 PATHFILES =
52
53 INSTALL_EXEC_HOOKS =
54 UNINSTALL_HOOKS =
55 INSTALL_DATA_HOOKS =
56 CLEAN_LOCALS =
57 CHECK_LOCALS =
58
59 EXTRA_DIST =
60 CLEANFILES =
61
62 SUBDIRS = po
63
64 RCS_FIND_IGNORE = \( -name SCCS -o -name BitKeeper -o -name .svn -o \
65 -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
66
67 ACLOCAL_AMFLAGS = -I m4
68
69 EXTRA_DIST += \
70 .version \
71 autogen.sh \
72 Documentation \
73 po/update-potfiles \
74 README.licensing \
75 tools/git-version-gen
76
77
78 include include/Makemodule.am
79 include lib/Makemodule.am
80 include libuuid/Makemodule.am
81 include libblkid/Makemodule.am
82 include libmount/Makemodule.am
83 include libsmartcols/Makemodule.am
84 include libfdisk/Makemodule.am
85
86 include schedutils/Makemodule.am
87 include text-utils/Makemodule.am
88 include term-utils/Makemodule.am
89 include login-utils/Makemodule.am
90 include sys-utils/Makemodule.am
91 include misc-utils/Makemodule.am
92 include disk-utils/Makemodule.am
93
94 include bash-completion/Makemodule.am
95
96 include tests/Makemodule.am
97
98 #
99 # Don't rely on configure.ac AC_CONFIG_FILES for install paths.
100 #
101 # The paths should be expanded at make time rather than configure:
102 # - to support 'make install prefix=/foo DESTDIR=/foo'
103 # - to recursively expands the paths (e.g. AC_CONFIG_FILES expands
104 # '@usrsbin_execdir@' to ${exec_prefix}/sbin')
105 #
106 edit_cmd = sed \
107 -e 's|@prefix[@]|$(prefix)|g' \
108 -e 's|@exec_prefix[@]|$(exec_prefix)|g' \
109 -e 's|@sysconfdir[@]|$(sysconfdir)|g' \
110 -e 's|@datadir[@]|$(datadir)|g' \
111 -e 's|@sbindir[@]|$(sbindir)|g' \
112 -e 's|@bindir[@]|$(bindir)|g' \
113 -e 's|@includedir[@]|$(includedir)|g' \
114 -e 's|@localstatedir[@]|$(localstatedir)|g' \
115 -e 's|@usrlib_execdir[@]|$(usrlib_execdir)|g' \
116 -e 's|@usrbin_execdir[@]|$(usrbin_execdir)|g' \
117 -e 's|@usrsbin_execdir[@]|$(usrsbin_execdir)|g' \
118 -e 's|@VERSION[@]|$(VERSION)|g' \
119 -e 's|@LIBUUID_VERSION[@]|$(LIBUUID_VERSION)|g' \
120 -e 's|@LIBMOUNT_VERSION[@]|$(LIBMOUNT_VERSION)|g' \
121 -e 's|@LIBBLKID_VERSION[@]|$(LIBBLKID_VERSION)|g'
122
123 CLEANFILES += $(PATHFILES)
124 EXTRA_DIST += $(PATHFILES:=.in)
125
126 $(PATHFILES): Makefile
127 @ rm -f $@ $@.tmp
128 $(AM_V_GEN) srcdir=''; \
129 test -f ./$@.in || srcdir=$(srcdir)/; \
130 $(edit_cmd) $${srcdir}$@.in >$@.tmp
131 @ mv $@.tmp $@
132
133 # Arrange so that .tarball-version appears only in the distribution
134 # tarball, and never in a checked-out repository.
135 dist-hook:
136 echo $(VERSION) > $(distdir)/.tarball-version
137 # Set ChangeLog tag reference.
138 sed -i "s/log/log;h=$(VERSION)/" $(distdir)/ChangeLog
139
140 distclean-local:
141 -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
142 rm -rf autom4te.cache
143
144
145 checkincludes:
146 @find * $(RCS_FIND_IGNORE) \
147 -name '*.[hcS]' -type f -print | sort -u \
148 | xargs $(top_srcdir)/tools/checkincludes.pl
149
150 checkconfig:
151 @find * $(RCS_FIND_IGNORE) \
152 -name '*.[hcS]' -type f -print | sort -u \
153 | xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)
154
155 checkmans:
156 @$(top_srcdir)/tools/checkmans.sh
157
158 checkxalloc:
159 @ $(top_srcdir)/tools/checkxalloc.sh
160
161 checkdecl:
162 @ $(top_srcdir)/tools/checkdecl.sh
163
164 ENABLE_ALL = --enable-static-programs --enable-most-builds
165 DISTCHECK_CONFIGURE_FLAGS = --disable-use-tty-group \
166 --disable-silent-rules $(ENABLE_ALL) \
167 --with-bashcompletiondir=$$dc_install_base/$(bashcompletiondir) \
168 --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
169
170
171 BUILT_SOURCES = .version
172 .version:
173 echo $(VERSION) > $@-t && mv $@-t $@
174
175 CHANGELOG_FILE = v$(VERSION)-ChangeLog
176
177 $(CHANGELOG_FILE):
178 @ if test "x$$PREVIOUS_VERSION" == "x"; then \
179 echo "Usage make changelog PREVIOUS_VERSION=<version>"; \
180 exit 1; \
181 fi
182 @ echo "Changes between v$(PREVIOUS_VERSION) and v$(VERSION)" > $(CHANGELOG_FILE)
183 @ echo "--------------------------------------------" >> $(CHANGELOG_FILE)
184 @ echo >> $(CHANGELOG_FILE)
185 $(AM_V_GEN) git log --stat v$(PREVIOUS_VERSION)..HEAD >> $(CHANGELOG_FILE)
186 #
187 #
188 # smatch scan -- smatch and cgcc are expected in $PATH
189 #
190 checksmatch:
191 $(MAKE) CHECK="smatch --data=$(abs_top_srcdir)/tools/smatch-data" CC=cgcc
192
193 changelog: $(CHANGELOG_FILE)
194
195 install-exec-hook: $(INSTALL_EXEC_HOOKS)
196
197 uninstall-hook: $(UNINSTALL_HOOKS)
198
199 install-data-hook: $(INSTALL_DATA_HOOKS)
200
201 clean-local: $(CLEAN_LOCALS)
202
203 check-local: $(CHECK_LOCALS)