blob: 245f90eb27d944b24cbe7f3b6367ec07dfe5bf7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
include $(top_srcdir)/config/include-Makefile.am
SUBDIRS = \
include \
disk-utils \
fdisk \
getopt \
lib \
login-utils \
misc-utils \
po \
schedutils \
sys-utils \
text-utils \
tests
if LINUX
SUBDIRS += \
hwclock \
mount \
partx
endif
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = \
autogen.sh \
README.devel \
README.licensing \
DEPRECATED \
licenses \
example.files \
po/update-potfiles \
tools \
docs
distclean-local:
-find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
rm -rf autom4te.cache
ENABLE_ALL = --enable-elvtune --enable-init --enable-kill --enable-last \
--enable-mesg --enable-partx --enable-raw --enable-rdev --enable-reset \
--enable-login-utils --enable-write --enable-arch
DISTCHECK_CONFIGURE_FLAGS = --disable-use-tty-group $(ENABLE_ALL)
|