]> git.ipfire.org Git - thirdparty/util-linux.git/blob - Makefile.am
build-sys: remove po/Makevars.template from EXTRA_DIST
[thirdparty/util-linux.git] / Makefile.am
1 include $(top_srcdir)/config/include-Makefile.am
2
3 SUBDIRS = \
4 include \
5 disk-utils \
6 fdisk \
7 getopt \
8 hwclock \
9 login-utils \
10 misc-utils \
11 mount \
12 partx \
13 po \
14 schedutils \
15 sys-utils \
16 text-utils \
17 tests
18
19 ACLOCAL_AMFLAGS = -I m4
20
21 EXTRA_DIST = \
22 autogen.sh \
23 README.devel \
24 licenses/ \
25 example.files/ \
26 po/update-potfiles
27
28
29 distclean-local:
30 -find . \( -name \*~ -o -name \*.orig -o -name \*.rej \) -exec rm -f {} \;
31 rm -rf autom4te.cache
32
33 mrproper: distclean
34 if [ -f ".gitignore" ]; then \
35 find -name Makefile.in -exec rm -f {} \; ; \
36 rm -f configure ABOUT-NLS ; \
37 rm -rf m4 ; \
38 cd config; rm -f `cat ../.gitignore`; cd .. ; \
39 cd po; rm -f `cat .gitignore`; cd .. ; \
40 fi
41
42 ENABLE_ALL = --enable-elvtune --enable-init --enable-kill --enable-last \
43 --enable-mesg --enable-partx --enable-raw --enable-rdev --enable-reset \
44 --enable-login-utils --enable-write
45 DISTCHECK_CONFIGURE_FLAGS = --disable-use-tty-group $(ENABLE_ALL)