summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/Makefile
diff options
context:
space:
mode:
authorharti <harti@FreeBSD.org>2004-12-08 16:22:01 +0000
committerharti <harti@FreeBSD.org>2004-12-08 16:22:01 +0000
commitbcb1f1f6f57e4630d36245b7c5fb2ce234218041 (patch)
tree033640eae93833ae9810ed9247ac98509312f27b /usr.bin/make/Makefile
parenta3e11dfa9b1fa344ae2ae1129eaf1c441f32d88e (diff)
downloadFreeBSD-src-bcb1f1f6f57e4630d36245b7c5fb2ce234218041.zip
FreeBSD-src-bcb1f1f6f57e4630d36245b7c5fb2ce234218041.tar.gz
Get rid of the sequential access feature of the lists. This was used
only in a couple of places and all of them except for one were easily converted to use Lst_First/Lst_Succ. The one place is compatibility mode in job.c where the it was used to advance to the next command on each invocation of JobStart. For this case add a pointer to the node to hold the currently executed command.
Diffstat (limited to 'usr.bin/make/Makefile')
-rw-r--r--usr.bin/make/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile
index e8ee5b2..d3e5f56 100644
--- a/usr.bin/make/Makefile
+++ b/usr.bin/make/Makefile
@@ -6,9 +6,9 @@ PROG= make
CFLAGS+=-I${.CURDIR}
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
make.c parse.c str.c suff.c targ.c util.c var.c var_modify.c
-SRCS+= lstAppend.c lstClose.c lstConcat.c lstDeQueue.c lstDestroy.c \
+SRCS+= lstAppend.c lstConcat.c lstDeQueue.c lstDestroy.c \
lstDupl.c lstFindFrom.c lstForEachFrom.c lstInit.c lstInsert.c \
- lstIsAtEnd.c lstMember.c lstNext.c lstOpen.c lstRemove.c
+ lstMember.c lstRemove.c
.PATH: ${.CURDIR}/lst.lib
WARNS?= 3
OpenPOWER on IntegriCloud