summaryrefslogblamecommitdiffstats
path: root/Makefile.am
blob: 865ee091b792f8068f9a1d5e9ab1185e18c69c5e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

                                                













                           

                 
           
                 


                    
             
                        
                     

                     


                    
                    

                    
 
 
                                                                     

                                                                              



                  
              
                

     



                     



                



               

                       
              
                          
                            
                              
                                  
                            

                               
                                    

                       
 



                                                                   

                
                                                                        
                             
 

              
                                    


                                                            




                                                                        
 
                                       
                                                             
                                                                         
                                                                 

                                                                                  





                                            
include $(top_srcdir)/config/include-Makefile.am

SHLIBS_DIRS =

if BUILD_LIBUUID
SHLIBS_DIRS += shlibs/uuid
endif

if BUILD_LIBBLKID
SHLIBS_DIRS += shlibs/blkid
endif

if BUILD_LIBMOUNT
SHLIBS_DIRS += shlibs/mount
endif

MAN_DIRS = man/ru

SUBDIRS = \
	include \
	disk-utils \
	fdisk \
	getopt \
	lib \
	$(SHLIBS_DIRS) \
	$(MAN_DIRS) \
	login-utils \
	misc-utils \
	po \
	schedutils \
	sys-utils \
	term-utils \
	text-utils \
	tests


RCS_FIND_IGNORE = \( -name SCCS -o -name BitKeeper -o -name .svn -o \
		-name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o

if BUILD_HWCLOCK
SUBDIRS += hwclock
endif

if BUILD_PARTX
SUBDIRS += partx
endif

if BUILD_INIT
SUBDIRS += simpleinit
endif

if BUILD_MOUNT
SUBDIRS += mount
endif

if BUILD_FSCK
SUBDIRS += fsck
endif

ACLOCAL_AMFLAGS = -I m4

EXTRA_DIST = \
		.version \
		autogen.sh \
		README.devel \
		README.licensing \
		DEPRECATED \
		licenses \
		example.files \
		po/update-potfiles \
		tools \
		docs

# Arrange so that .tarball-version appears only in the distribution
# tarball, and never in a checked-out repository.
dist-hook:
	echo $(VERSION) > $(distdir)/.tarball-version

distclean-local:
	-find . -name \*~ -o -name \*.orig -o -name \*.rej | xargs rm -f
	rm -rf autom4te.cache


checkincludes:
	@find * $(RCS_FIND_IGNORE) \
		-name '*.[hcS]' -type f -print | sort -u \
		| xargs $(top_srcdir)/tools/checkincludes.pl

checkconfig:
	@find * $(RCS_FIND_IGNORE) \
		-name '*.[hcS]' -type f -print | sort -u \
		| xargs $(top_srcdir)/tools/checkconfig.sh $(top_srcdir)


ENABLE_ALL = --enable-static-programs \
 --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 --enable-mount

DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --disable-use-tty-group $(ENABLE_ALL)


BUILT_SOURCES = .version
.version:
	echo $(VERSION) > $@-t && mv $@-t $@