summaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 5bbbdc25c3b3e8f4c437fb14e0c32978188d93ff (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                     
                                                       
                                                                      
                                                    

 
           

                 
 



                         
              
                


                     
                    
                     
                   
                  
 













                                                        
                                       







                                                                   




                                               
                                                                               

                                                                              
                   
# Makefile -- Makefile for util-linux Linux utilities
# Created: Sat Dec 26 20:09:40 1992
# Revised: Fri Oct  6 21:37:30 1995 by r.faith@ieee.org
# Copyright 1992, 1993, 1994, 1995 Rickard E. Faith (faith@cs.unc.edu)
# May be distributed under the terms of the GNU GPL.
#

VERSION=2.8

include ./MCONFIG

ifeq "$(HAVE_MOUNT)" "no"
	MOUNTDIR=mount
endif

SUBDIRS= bsd \
	getopt \
	disk-utils \
	games \
	login-utils \
	misc-utils \
	$(MOUNTDIR) \
	sys-utils \
	text-utils

.PHONEY: all install clean
all:
	@for subdir in $(SUBDIRS); do \
		(cd $$subdir && $(MAKE) $@) || exit 1; \
	done

install:
	@if [ "`whoami`" = "root" ]; then umask 022; fi
	@for subdir in $(SUBDIRS); do \
		(cd $$subdir && $(MAKE) $@) || exit 1; \
	done

clean:
	-rm -f *.o *~ core poe.diffs
	@for subdir in $(SUBDIRS); do \
		(cd $$subdir && $(MAKE) $@) || exit 1; \
	done

dist:
	(cd /tmp; \
	rm -rf /tmp/util-linux-$(VERSION); \
	cvs export -fNd util-linux-$(VERSION) -r HEAD util-linux; \
	cd util-linux-$(VERSION); \
	find -type d | xargs chmod 755; \
	find -type f | xargs chmod 644; \
	find -type d | xargs chown root:root; \
	find -type f | xargs chown root:root; \
	cd ..; \
	GZIP=-9 tar cvvzf util-linux-$(VERSION).tar.gz util-linux-$(VERSION); \
	cp -p util-linux-$(VERSION)/LSM util-linux-$(VERSION).lsm; \
	cp -p util-linux-$(VERSION)/ANNOUNCE util-linux-$(VERSION).Announce; \
	echo Done.)