summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 13 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 9fb405272..0cc45be26 100644
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,26 @@
# Makefile -- Makefile for util-linux Linux utilities
# Created: Sat Dec 26 20:09:40 1992
-# Revised: Sun Feb 26 17:29:25 1995 by faith@cs.unc.edu
+# 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.2
-include MCONFIG
+VERSION=2.5
+
+include ./MCONFIG
SUBDIRS= bsd \
disk-utils \
games \
login-utils \
- makedev-1.4.1 \
misc-utils \
mount \
sys-utils \
- syslogd \
- text-utils \
- time
+ text-utils
+ifeq "$(HAVE_SYSLOGD)" "no"
+SUBDIRS:=$(SUBDIRS) syslogd
+endif
.PHONEY: all install clean
all:
@@ -43,12 +45,13 @@ dist:
rm -rf /tmp/util-linux-$(VERSION); \
cvs export -fNd util-linux-$(VERSION) -r HEAD util-linux; \
cd util-linux-$(VERSION); \
- ln -s README util-linux-$(VERSION).bin.Notes; \
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 ..; \
- tar zcvvf util-linux-$(VERSION).tar.gz util-linux-$(VERSION); \
- cp -p util-linux-$(VERSION)/README util-linux-$(VERSION).bin.Notes; \
+ tar cvvf util-linux-$(VERSION).tar util-linux-$(VERSION); \
+ gzip -9 util-linux-$(VERSION).tar; \
+ cp -p util-linux-$(VERSION)/LSM util-linux-$(VERSION).lsm; \
+ cp -p util-linux-$(VERSION)/ANNOUNCE util-linux-$(VERSION).Announce; \
echo Done.)