Module Name: src
Committed By: rillig
Date: Sun Oct 25 13:25:19 UTC 2020
Modified Files:
src/usr.bin/make: Makefile Makefile.boot
Removed Files:
src/usr.bin/make: strlist.c strlist.h
Log Message:
make(1): remove unused strlist_t
To generate a diff of this commit:
cvs rdiff -u -r1.105 -r1.106 src/usr.bin/make/Makefile
cvs rdiff -u -r1.22 -r1.23 src/usr.bin/make/Makefile.boot
cvs rdiff -u -r1.8 -r0 src/usr.bin/make/strlist.c
cvs rdiff -u -r1.4 -r0 src/usr.bin/make/strlist.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/Makefile
diff -u src/usr.bin/make/Makefile:1.105 src/usr.bin/make/Makefile:1.106
--- src/usr.bin/make/Makefile:1.105 Fri Oct 23 15:44:38 2020
+++ src/usr.bin/make/Makefile Sun Oct 25 13:25:19 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.105 2020/10/23 15:44:38 rillig Exp $
+# $NetBSD: Makefile,v 1.106 2020/10/25 13:25:19 rillig Exp $
# @(#)Makefile 5.2 (Berkeley) 12/28/90
PROG= make
@@ -18,7 +18,6 @@ SRCS+= make_malloc.c
SRCS+= metachar.c
SRCS+= parse.c
SRCS+= str.c
-SRCS+= strlist.c
SRCS+= suff.c
SRCS+= targ.c
SRCS+= trace.c
@@ -37,7 +36,6 @@ HDRS+= meta.h
HDRS+= metachar.h
HDRS+= nonints.h
HDRS+= pathnames.h
-HDRS+= strlist.h
HDRS+= trace.h
# Whether to generate a coverage report after running the tests.
Index: src/usr.bin/make/Makefile.boot
diff -u src/usr.bin/make/Makefile.boot:1.22 src/usr.bin/make/Makefile.boot:1.23
--- src/usr.bin/make/Makefile.boot:1.22 Sun Aug 9 15:54:13 2020
+++ src/usr.bin/make/Makefile.boot Sun Oct 25 13:25:19 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.boot,v 1.22 2020/08/09 15:54:13 rillig Exp $
+# $NetBSD: Makefile.boot,v 1.23 2020/10/25 13:25:19 rillig Exp $
#
# A very simple makefile...
#
@@ -18,7 +18,7 @@ EXTRA_LIBS=
OBJS= arch.o buf.o compat.o cond.o dir.o enum.o for.o hash.o \
job.o lst.o main.o make.o make_malloc.o metachar.o parse.o \
- str.o strlist.o suff.o targ.o trace.o var.o util.o
+ str.o suff.o targ.o trace.o var.o util.o
.c.o:
${CC} ${CPPFLAGS} ${CFLAGS} ${EXTRA_CFLAGS} -c $< -o $@