]> git.ipfire.org Git - thirdparty/util-linux.git/blame - Makefile.am
build-sys: fix libuuid and libblkid version-info
[thirdparty/util-linux.git] / Makefile.am
CommitLineData
48d7b13a
KZ
1include $(top_srcdir)/config/include-Makefile.am
2
2984313a 3SUBDIRS = \
8eeb575c 4 include \
48d7b13a
KZ
5 disk-utils \
6 fdisk \
7 getopt \
d00ed891 8 lib \
20ad4963 9 shlibs \
48d7b13a
KZ
10 login-utils \
11 misc-utils \
48d7b13a
KZ
12 po \
13 schedutils \
14 sys-utils \
e83446da
KZ
15 text-utils \
16 tests
48d7b13a 17
44e293d6
KZ
18
19RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
20 -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o
21
3bbc9320
ST
22if LINUX
23SUBDIRS += \
24 hwclock \
3bbc9320
ST
25 partx
26endif
27
7177d32e
ABL
28if BUILD_MOUNT
29SUBDIRS += mount
30endif
31
607c2a72
KZ
32if BUILD_FSCK
33SUBDIRS += fsck
34endif
35
48d7b13a
KZ
36ACLOCAL_AMFLAGS = -I m4
37
1b38f7cc 38EXTRA_DIST = \
562218e6 39 autogen.sh \
81c3ab2d 40 README.devel \
dcb219b3 41 README.licensing \
b3adc972 42 DEPRECATED \
9645b5cb
KZ
43 licenses \
44 example.files \
71be1ee4 45 po/update-potfiles \
5196eb4b
KZ
46 tools \
47 docs
b8d1314d 48
baf39af1
KZ
49
50distclean-local:
0b9f737e 51 -find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
baf39af1 52 rm -rf autom4te.cache
8eeb575c 53
44e293d6
KZ
54
55checkincludes:
043102bf 56 @find * $(RCS_FIND_IGNORE) \
44e293d6
KZ
57 -name '*.[hcS]' -type f -print | sort -u \
58 | xargs $(top_srcdir)/tools/checkincludes.pl
59
043102bf
KZ
60checkconfig:
61 @find * $(RCS_FIND_IGNORE) \
62 -name '*.[hcS]' -type f -print | sort -u \
63 | xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)
64
44e293d6 65
7d2802a0 66ENABLE_ALL = --enable-static-programs --with-fsprobe=builtin \
8569410c 67 --enable-elvtune --enable-init --enable-kill --enable-last \
33d7e660 68 --enable-mesg --enable-partx --enable-raw --enable-rdev --enable-reset \
7177d32e 69 --enable-login-utils --enable-write --enable-arch --enable-mount
33d7e660 70DISTCHECK_CONFIGURE_FLAGS = --disable-use-tty-group $(ENABLE_ALL)