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