public inbox for linux-8086@vger.kernel.org
 help / color / mirror / Atom feed
* Lightener patch
@ 2004-10-30  4:19 Tommy McCabe
  0 siblings, 0 replies; only message in thread
From: Tommy McCabe @ 2004-10-30  4:19 UTC (permalink / raw)
  To: linux-8086

[-- Attachment #1: Type: text/plain, Size: 226 bytes --]

Gets rids of huge quantities of sheer obsolete dead
weight in the Makefiles.


		
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: junkpatch.diff --]
[-- Type: text/x-diff; name="junkpatch.diff", Size: 31144 bytes --]

diff -urN ./elksold/elkscmd/Make.rules ./elks/elkscmd/Make.rules
--- ./elksold/elkscmd/Make.rules	2002-05-29 14:23:03.000000000 -0400
+++ ./elks/elkscmd/Make.rules	1969-12-31 19:00:00.000000000 -0500
@@ -1,135 +0,0 @@
-# This Makefile contains the rules used to create a tree of files ready
-# for turning into a root floppy image, and the command to turn the said
-# tree into just such an image. It assumes that the following value has
-# been defined before this file is included in any of the Makefiles:
-#
-#    BASEDIR       The relative path from the current directory to the
-#                  directory containing this file. This is the same value
-#                  used with Make.defs in this directory.
-#
-# In addition, the following values are assumed to be set for commands in
-# the current directory only:
-#
-#    MIN_BIN       Commands to be placed in /bin on all systems.
-#    MIN_LIB       Libraries to be placed in /lib on all systems.
-#    MIN_SBIN      Commands to be placed in /sbin on all systems.
-#    MIN_USR_BIN   Commands to be placed in /usr/bin on all systems.
-#    MIN_USR_LIB   Libraries to be placed in /usr/lib on all systems.
-#    MIN_USR_MAN   Manual pages included on all systems.
-#    MIN_USR_SBIN  Commands to be placed in /usr/sbin on all systems.
-#
-#    NET_BIN       Commands to be placed in /bin on networked systems.
-#    NET_LIB       Libraries to be placed in /lib on networked systems.
-#    NET_SBIN      Commands to be placed in /sbin on networked systems.
-#    NET_USR_BIN   Commands to be placed in /usr/bin on networked systems.
-#    NET_USR_LIB   Libraries to be placed in /usr/lib on networked systems.
-#    NET_USR_MAN   Manual pages included on networked installations.
-#    NET_USR_SBIN  Commands to be placed in /usr/sbin on networked systems.
-#
-#    STD_BIN       Commands to be placed in /bin on full installations.
-#    STD_LIB       Libraries to be placed in /lib on full installations.
-#    STD_SBIN      Commands to be placed in /sbin on full installations.
-#    STD_USR_BIN   Commands to be placed in /usr/bin on full installations.
-#    STD_USR_LIB   Libraries to be placed in /usr/lib on full installations.
-#    STD_USR_MAN   Manual pages included on full installations.
-#    STD_USR_SBIN  Commands to be placed in /usr/sbin on full installations.
-#
-# Note that manual pages are NOT automatically copied over when the relevant
-# program is copied, so need to be explicitly listed for copying over in the
-# relevant {MIN,NET,STD}_USR_MAN definition line.
-#
-# Note also that the MIN_* values are implicitly included in the relevant
-# NET_* and STD_* values, so should be omitted from the latter.
-#
-###############################################################################
-#
-# This Makefile uses these values to implement the following rules, used
-# by all Makefiles underneath it:
-#
-#	make basepkg	Create the tree used for i86 ELKS distributions, with
-#			the MINIMUM set of commands that are to be included.
-#			This is used as a base for the other tree commands,
-#			and copies the MIN_* values only.
-#
-#	make fullpkg	Create the tree used for a full non-networking ELKS
-#			i86 distribution. This uses pcmin as a base, and adds
-#			the remaining non-networking commands to it.
-#
-#	make netpkg	Create the tree used for a minimum i86 distribution
-#			that includes networking support. This uses pcmin as
-#			a base, and adds support for networking to it.
-#
-#	make maxpkg	Create a full tree of all commands available for ELKS
-#			i86 distribution, including all networking commands.
-#			This uses pcfull as a base, and adds support for
-#			networking to it.
-#
-###############################################################################
-#
-# Directory to create the target tree in.
-
-ROOTDIR=$(BASEDIR)/RootFS
-
-###############################################################################
-#
-# Command to copy the tree across.
-
-MKTREE	= $(BASEDIR)/tools/mktree $(TARGET_MNT)
-
-mkbase2:
-	$(MKTREE) /bin $(MIN_BIN)
-	$(MKTREE) /lib $(MIN_LIB)
-	$(MKTREE) /sbin $(MIN_SBIN)
-	$(MKTREE) /usr/bin $(MIN_USR_BIN)
-	$(MKTREE) /usr/lib $(MIN_USR_LIB)
-	$(MKTREE) /usr/man $(MIN_USR_MAN)
-	$(MKTREE) /usr/sbin $(MIN_USR_SBIN)
-
-mkbase: mkbase2
-	@for DIR in */ ; do \
-	    if [ -f $(DIR)/Makefile ]; then \
-		make -C $(DIR) mkbase ; \
-	    fi ; \
-	done
-
-mkstd2: mkbase2
-	$(MKTREE) /bin $(STD_BIN)
-	$(MKTREE) /lib $(STD_LIB)
-	$(MKTREE) /sbin $(STD_SBIN)
-	$(MKTREE) /usr/bin $(STD_USR_BIN)
-	$(MKTREE) /usr/lib $(STD_USR_LIB)
-	$(MKTREE) /usr/sbin $(STD_USR_SBIN)
-	$(MKTREE) /usr/man ALL
-
-mkstd:	mkstd2
-	@for DIR in */ ; do \
-	    if [ -f $(DIR)/Makefile ]; then \
-		make -C $(DIR) mkstd ; \
-	    fi ; \
-	done
-
-mknet2: mkbase2
-	$(MKTREE) /bin $(NET_BIN)
-	$(MKTREE) /lib $(NET_LIB)
-	$(MKTREE) /sbin $(NET_SBIN)
-	$(MKTREE) /usr/bin $(NET_USR_BIN)
-	$(MKTREE) /usr/lib $(NET_USR_LIB)
-	$(MKTREE) /usr/sbin $(NET_USR_SBIN)
-
-mknet: mknet2
-	@for DIR in */ ; do \
-	    if [ -f $(DIR)/Makefile ]; then \
-		make -C $(DIR) mknet ; \
-	    fi ; \
-	done
-
-mkmax: mkstd2 mknet2
-	@for DIR in */ ; do \
-	    if [ -f $(DIR)/Makefile ]; then \
-		make -C $(DIR) mkmax ; \
-	    fi ; \
-	done
-
-#######
-# EOF #
-#######
diff -urN ./elksold/elkscmd/Makefile ./elks/elkscmd/Makefile
--- ./elksold/elkscmd/Makefile	2004-07-28 09:58:35.000000000 -0400
+++ ./elks/elkscmd/Makefile	2004-10-30 00:12:35.000000000 -0400
@@ -46,63 +46,7 @@
 		$(FULL3_TARGET_FS) $(FULL5_TARGET_FS) || true
 	rm -f $(COMB_TARGET_FS) $(ROOT_TARGET_FS) $(ROOT_NET_TARGET_FS) \
 		$(FULL3_TARGET_FS) $(FULL5_TARGET_FS) boot images.zip core
-	rm -rf $(ROOTDIR)
 	@for i in $(DIRS); do make -C $$i clean ; done
-
-###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
-#
-# Create standard packages.
-
-basepkg:
-	rm -fr $(ROOTDIR)
-	mkdir $(ROOTDIR)
-	make mkbase
-
-netpkg:
-	rm -fr $(ROOTDIR)
-	mkdir $(ROOTDIR)
-	make mknet
-
-stdpkg:
-	rm -fr $(ROOTDIR)
-	mkdir $(ROOTDIR)
-	make mkstd
-
-maxpkg:
-	rm -fr $(ROOTDIR)
-	mkdir $(ROOTDIR)
-	make mkmax
-
 ###############################################################################
 #
 # Create relevant parts of ELKS package.
diff -urN ./elksold/elkscmd/ash/Makefile ./elks/elkscmd/ash/Makefile
--- ./elksold/elkscmd/ash/Makefile	2004-05-28 12:27:54.000000000 -0400
+++ ./elks/elkscmd/ash/Makefile	2004-10-30 00:06:27.000000000 -0400
@@ -10,36 +10,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= ash
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 SRCS=	builtins.c cd.c dirent.c error.c eval.c exec.c expand.c input.c \
 	jobs.c mail.c main.c memalloc.c miscbltin.c mystring.c nodes.c \
diff -urN ./elksold/elkscmd/bc/Makefile ./elks/elkscmd/bc/Makefile
--- ./elksold/elkscmd/bc/Makefile	2004-09-18 12:40:10.000000000 -0400
+++ ./elks/elkscmd/bc/Makefile	2004-10-30 00:06:37.000000000 -0400
@@ -5,37 +5,6 @@
 # $Id: Makefile,v 1.14 2004/09/18 16:40:10 cmatsuoka Exp $
 ###############################################################################
 #
-# Include standard packaging commands.
-
-BASEDIR 	= ..
-include $(BASEDIR)/Make.defs
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= fbc bc
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-###############################################################################
-#
 #  Make sure these have the correct directories for your machine.
 #
 #  LIBDIR and BINDIR are where bc and libmath.b will be put.
diff -urN ./elksold/elkscmd/byacc/Makefile ./elks/elkscmd/byacc/Makefile
--- ./elksold/elkscmd/byacc/Makefile	2002-05-29 14:23:10.000000000 -0400
+++ ./elks/elkscmd/byacc/Makefile	2004-10-30 00:06:46.000000000 -0400
@@ -5,36 +5,6 @@
 include ../Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= yacc
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 BINDIR	      = /usr/bin
 
diff -urN ./elksold/elkscmd/disk_utils/Makefile ./elks/elkscmd/disk_utils/Makefile
--- ./elksold/elkscmd/disk_utils/Makefile	2004-07-28 09:58:35.000000000 -0400
+++ ./elks/elkscmd/disk_utils/Makefile	2004-10-30 00:06:54.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= fdisk fsck mkfs partype ramdisk
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PROGS=fdisk ramdisk mkfs fsck partype
 
diff -urN ./elksold/elkscmd/elvis/Makefile ./elks/elkscmd/elvis/Makefile
--- ./elksold/elkscmd/elvis/Makefile	2002-05-29 14:23:10.000000000 -0400
+++ ./elks/elkscmd/elvis/Makefile	2004-10-30 00:06:17.000000000 -0400
@@ -2,36 +2,6 @@
 #
 ###############################################################################
 #
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= elvis ctags ref virec refont
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
-#
 # After editing this Makefile as described below, you should...
 #
 # Use `make` to compile all programs
diff -urN ./elksold/elkscmd/file_utils/Makefile ./elks/elkscmd/file_utils/Makefile
--- ./elksold/elkscmd/file_utils/Makefile	2004-07-28 14:11:53.000000000 -0400
+++ ./elks/elkscmd/file_utils/Makefile	2004-10-30 00:07:29.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= cat chmod cmp cp ln ls mkdir mv rm rmdir sync touch 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= chgrp chown mknod
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= dd grep more
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= mkfifo
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 CFLAGS = $(CFLBASE)
 
diff -urN ./elksold/elkscmd/inet/Makefile ./elks/elkscmd/inet/Makefile
--- ./elksold/elkscmd/inet/Makefile	2004-09-17 14:48:26.000000000 -0400
+++ ./elks/elkscmd/inet/Makefile	2004-10-30 00:07:58.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 DIRS=nettools httpd telnet tinyirc urlget
 
diff -urN ./elksold/elkscmd/inet/httpd/Makefile ./elks/elkscmd/inet/httpd/Makefile
--- ./elksold/elkscmd/inet/httpd/Makefile	2002-03-03 18:17:07.000000000 -0500
+++ ./elks/elkscmd/inet/httpd/Makefile	2004-10-30 00:08:13.000000000 -0400
@@ -5,33 +5,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_SBIN	= httpd
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 SHELL = /bin/sh
 
diff -urN ./elksold/elkscmd/inet/nettools/Makefile ./elks/elkscmd/inet/nettools/Makefile
--- ./elksold/elkscmd/inet/nettools/Makefile	2002-02-24 14:32:49.000000000 -0500
+++ ./elks/elkscmd/inet/nettools/Makefile	2004-10-30 00:07:51.000000000 -0400
@@ -3,33 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_SBIN	= netstat
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PRGS=netstat
 
diff -urN ./elksold/elkscmd/inet/telnet/Makefile ./elks/elkscmd/inet/telnet/Makefile
--- ./elksold/elkscmd/inet/telnet/Makefile	2004-06-10 09:44:04.000000000 -0400
+++ ./elks/elkscmd/inet/telnet/Makefile	2004-10-30 00:07:43.000000000 -0400
@@ -5,33 +5,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= telnet
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 #LDFLAGS=-i
 
diff -urN ./elksold/elkscmd/inet/urlget/Makefile ./elks/elkscmd/inet/urlget/Makefile
--- ./elksold/elkscmd/inet/urlget/Makefile	2002-03-03 18:17:07.000000000 -0500
+++ ./elks/elkscmd/inet/urlget/Makefile	2004-10-30 00:08:23.000000000 -0400
@@ -5,33 +5,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= urlget
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 #CFLAGS=-O 
 
diff -urN ./elksold/elkscmd/levee/Makefile ./elks/elkscmd/levee/Makefile
--- ./elksold/elkscmd/levee/Makefile	2002-07-20 17:46:15.000000000 -0400
+++ ./elks/elkscmd/levee/Makefile	2004-10-30 00:08:33.000000000 -0400
@@ -5,36 +5,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= lev
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 CFLAGS = -ansi -O -0 -DSIZE=16000L
 
diff -urN ./elksold/elkscmd/lib/bsd/Makefile ./elks/elkscmd/lib/bsd/Makefile
--- ./elksold/elkscmd/lib/bsd/Makefile	2002-02-24 14:32:49.000000000 -0500
+++ ./elks/elkscmd/lib/bsd/Makefile	2004-10-30 00:09:08.000000000 -0400
@@ -3,33 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= libbsd2.a
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 OBJS = err.o daemon.o
 
diff -urN ./elksold/elkscmd/lib/vga/Makefile ./elks/elkscmd/lib/vga/Makefile
--- ./elksold/elkscmd/lib/vga/Makefile	2002-02-24 14:32:49.000000000 -0500
+++ ./elks/elkscmd/lib/vga/Makefile	2004-10-30 00:09:00.000000000 -0400
@@ -1,33 +1,4 @@
 ###############################################################################
-#
-# Include standard packaging commands.
-
-BASEDIR 	= ../..
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= demo
-STD_USR_LIB	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 CC=bcc
 
diff -urN ./elksold/elkscmd/minix1/Makefile ./elks/elkscmd/minix1/Makefile
--- ./elksold/elkscmd/minix1/Makefile	2002-05-29 14:23:11.000000000 -0400
+++ ./elks/elkscmd/minix1/Makefile	2004-10-30 00:08:45.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= cut uniq wc
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= decomp16
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= banner cksum du fgrep grep proto sum
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 CFLAGS	= $(CFLBASE) -D_POSIX_SOURCE
 
diff -urN ./elksold/elkscmd/minix2/Makefile ./elks/elkscmd/minix2/Makefile
--- ./elksold/elkscmd/minix2/Makefile	2002-05-29 14:23:11.000000000 -0400
+++ ./elks/elkscmd/minix2/Makefile	2004-10-30 00:09:57.000000000 -0400
@@ -5,36 +5,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= lp remsync synctree tget
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= lpd
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= env pwdauth
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= install mt
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PRGS=env install lp pwdauth remsync synctree tget
 
diff -urN ./elksold/elkscmd/minix3/Makefile ./elks/elkscmd/minix3/Makefile
--- ./elksold/elkscmd/minix3/Makefile	2004-06-02 16:38:03.000000000 -0400
+++ ./elks/elkscmd/minix3/Makefile	2004-10-30 00:09:47.000000000 -0400
@@ -5,36 +5,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	=
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	=
-
-STD_BIN 	= sed
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= cal diff file find head sort tail tee
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	=
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PRGS=cal diff file find head sed sort tail tee
 
diff -urN ./elksold/elkscmd/misc_utils/Makefile ./elks/elkscmd/misc_utils/Makefile
--- ./elksold/elkscmd/misc_utils/Makefile	2004-06-09 15:19:16.000000000 -0400
+++ ./elks/elkscmd/misc_utils/Makefile	2004-10-30 00:09:31.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= ed tar compress uncompress zcat
-STD_USR_LIB	= 
-STD_USR_MAN	= compress.1 uncompress.1 zcat.1
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PRGS=ed tar compress uncompress zcat
 
diff -urN ./elksold/elkscmd/mtools/Makefile ./elks/elkscmd/mtools/Makefile
--- ./elksold/elkscmd/mtools/Makefile	2002-05-29 14:23:11.000000000 -0400
+++ ./elks/elkscmd/mtools/Makefile	2004-10-30 00:09:41.000000000 -0400
@@ -2,37 +2,6 @@
 #       Makefile for MSDOS tools
 #
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= mcopy mdel mdir mkdfs mmd mrd mread mren mtype mwrite
-STD_USR_LIB	= 
-STD_USR_MAN	= mcopy.1 mdel.1 mdir.1 mkdfs.1 mmd.1 mrd.1 mread.1 mren.1 \
-		  mtype.1 mwrite.1
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 CC = bcc
 
diff -urN ./elksold/elkscmd/prn-utils/Makefile ./elks/elkscmd/prn-utils/Makefile
--- ./elksold/elkscmd/prn-utils/Makefile	2002-05-29 14:23:11.000000000 -0400
+++ ./elks/elkscmd/prn-utils/Makefile	2004-10-30 00:10:30.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= lpfilter
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PRGS=lpfilter
 
diff -urN ./elksold/elkscmd/rc/Makefile ./elks/elkscmd/rc/Makefile
--- ./elksold/elkscmd/rc/Makefile	2002-05-29 14:23:11.000000000 -0400
+++ ./elks/elkscmd/rc/Makefile	2004-10-30 00:09:23.000000000 -0400
@@ -6,36 +6,6 @@
 
 ###############################################################################
 #
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= rc
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= rc.1
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
-#
 # Please check the configuration parameters in config.h (and if you want
 # to make sure, the definitions in proto.h) to make sure they are correct
 # for your system.
diff -urN ./elksold/elkscmd/rc/editline/Makefile ./elks/elkscmd/rc/editline/Makefile
--- ./elksold/elkscmd/rc/editline/Makefile	2002-02-24 14:32:50.000000000 -0500
+++ ./elks/elkscmd/rc/editline/Makefile	2004-10-30 00:10:23.000000000 -0400
@@ -4,33 +4,6 @@
 ##
 ###############################################################################
 ##
-## Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
-##
 ##  Set your options:
 ##	-DANSI_ARROWS		ANSI arrows keys work like emacs.
 ##	-DHAVE_STDLIB		Have <stdlib.h>.
diff -urN ./elksold/elkscmd/rc/history/Makefile ./elks/elkscmd/rc/history/Makefile
--- ./elksold/elkscmd/rc/history/Makefile	2002-02-24 14:32:50.000000000 -0500
+++ ./elks/elkscmd/rc/history/Makefile	2004-10-30 00:10:11.000000000 -0400
@@ -1,33 +1,4 @@
 ###############################################################################
-#
-# Include standard packaging commands.
-
-BASEDIR 	= ../..
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 CC=gcc -g -O
 
diff -urN ./elksold/elkscmd/sash/Makefile ./elks/elkscmd/sash/Makefile
--- ./elksold/elkscmd/sash/Makefile	2002-05-29 14:23:11.000000000 -0400
+++ ./elks/elkscmd/sash/Makefile	2004-10-30 00:11:10.000000000 -0400
@@ -5,36 +5,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= sash
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= sash.1
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= 
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 OBJS = sash.o cmds.o cmd_dd.o cmd_ed.o cmd_grep.o cmd_ls.o cmd_tar.o utils.o
 
diff -urN ./elksold/elkscmd/sh_utils/Makefile ./elks/elkscmd/sh_utils/Makefile
--- ./elksold/elkscmd/sh_utils/Makefile	2002-05-29 14:23:11.000000000 -0400
+++ ./elks/elkscmd/sh_utils/Makefile	2004-10-30 00:11:04.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= false pwd true uname
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= date echo printenv
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= logname mesg test
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= dirname tr which whoami write xargs yes
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= stty
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PRGS=basename date dirname echo false printenv pwd true which whoami yes \
 	logname tr xargs mesg stty test
diff -urN ./elksold/elkscmd/sys_utils/Makefile ./elks/elkscmd/sys_utils/Makefile
--- ./elksold/elkscmd/sys_utils/Makefile	2004-06-09 16:47:23.000000000 -0400
+++ ./elks/elkscmd/sys_utils/Makefile	2004-10-30 00:10:57.000000000 -0400
@@ -3,38 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= getty init kill login mount passwd ps swapon meminfo \
-		  reboot umount
-MIN_LIB 	= 
-MIN_SBIN	= clock exitemu getty init reboot
-MIN_USR_BIN	= meminfo passwd
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= knl
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= man who
-STD_USR_LIB	= 
-STD_USR_MAN	= clock.8 getty.1 kill.1 knl.8 login.1 man.1 mount.8 \
-		  passwd.1 ps.1 reboot.8 umount.8 who.1 swapon.1
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 PRGS		= init getty login kill mount umount passwd reboot ps \
 		  swapon meminfo who clock exitemu knl man
diff -urN ./elksold/elkscmd/xvi/Makefile ./elks/elkscmd/xvi/Makefile
--- ./elksold/elkscmd/xvi/Makefile	2002-05-29 14:23:12.000000000 -0400
+++ ./elks/elkscmd/xvi/Makefile	2004-10-30 00:10:44.000000000 -0400
@@ -3,36 +3,6 @@
 include $(BASEDIR)/Make.defs
 
 ###############################################################################
-#
-# Include standard packaging commands.
-
-MIN_BIN 	= 
-MIN_LIB 	= 
-MIN_SBIN	= 
-MIN_USR_BIN	= 
-MIN_USR_LIB	= 
-MIN_USR_MAN	= 
-MIN_USR_SBIN	= 
-
-NET_BIN 	= 
-NET_LIB 	= 
-NET_SBIN	= 
-NET_USR_BIN	= 
-NET_USR_LIB	= 
-NET_USR_MAN	= 
-NET_USR_SBIN	= 
-
-STD_BIN 	= 
-STD_LIB 	= 
-STD_SBIN	= 
-STD_USR_BIN	= xvi
-STD_USR_LIB	= 
-STD_USR_MAN	= 
-STD_USR_SBIN	= 
-
-include $(BASEDIR)/Make.rules
-
-###############################################################################
 
 CFLAGS= $(CFLBASE)
 LFLAGS= -s

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-10-30  4:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-30  4:19 Lightener patch Tommy McCabe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox