summaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: 1d964acba643b1ea6ea41cf360c9a0825e4b8ccb (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
include $(top_srcdir)/config/include-Makefile.am

SUBDIRS = \
	include \
	disk-utils \
	fdisk \
	getopt \
	hwclock \
	login-utils \
	misc-utils \
	mount \
        partx \
	po \
	schedutils \
	sys-utils \
	text-utils \
	tests

ACLOCAL_AMFLAGS = -I m4

EXTRA_DIST = 	config/include-Makefile.am \
		autogen.sh \
		README.* \
		licenses/* \
		example.files/* \
		po/Makevars.template \
		po/update-potfiles


distclean-local:
	-find . \( -name \*~ -o -name \*.orig -o -name \*.rej \) -exec rm -f {} \;
	rm -rf autom4te.cache

mrproper: distclean
	if [ -f ".gitignore" ]; then \
		find -name Makefile.in -exec rm -f {} \; ; \
		rm -f configure ABOUT-NLS ; \
		rm -rf m4 ; \
		cd config; rm -f `cat ../.gitignore`; cd .. ; \
		cd po; rm -f `cat .gitignore`; cd .. ; \
	fi