blob: 83398391b41b7a06b76c3e6a7c3be8701a40d688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
$NetBSD: patch-bc,v 1.1 2005/12/14 13:53:24 joerg Exp $
--- tcl/Make.orig 1995-02-24 21:19:48.000000000 +0000
+++ tcl/Make
@@ -11,13 +11,7 @@ CFLAGS = $(TCLCFLAGS) -I. -DTCL_VERSION=
SRC = \
panic.c \
- strchr.c \
strerror.c \
- strpbrk.c \
- strspn.c \
- strstr.c \
- strtol.c \
- strtoul.c \
tclAssem.c \
tclBasic.c \
tclCmdAH.c \
@@ -30,13 +24,7 @@ SRC = \
OBJ = \
panic.o \
- strchr.o \
strerror.o \
- strpbrk.o \
- strspn.o \
- strstr.o \
- strtol.o \
- strtoul.o \
tclAssem.o \
tclBasic.o \
tclCmdAH.o \
@@ -80,28 +68,3 @@ depend:
$(MAKEDEPEND) $(DEPENDFLAGS) *.c
# DO NOT DELETE THIS LINE -- make depend depends on it.
-
-panic.o: stdlib.h
-strchr.o: string.h
-strerror.o: string.h
-strpbrk.o: string.h
-strspn.o: string.h
-strtol.o: stdlib.h
-strtoul.o: sprite.h stdlib.h
-tclAssem.o: tclInt.h tcl.h stdlib.h
-tclAssem.o: string.h
-tclBasic.o: stdlib.h string.h
-tclBasic.o: tclInt.h tcl.h
-tclCmdAH.o: stdlib.h string.h
-tclCmdAH.o: tclInt.h tcl.h
-tclCmdIZ.o: stdlib.h string.h
-tclCmdIZ.o: tclInt.h tcl.h
-tclExpr.o: tcl.h tclInt.h
-tclGlob.o: stdlib.h string.h
-tclGlob.o: tcl.h
-tclHistory.o: tclInt.h tcl.h
-tclHistory.o: stdlib.h string.h
-tclProc.o: stdlib.h string.h
-tclProc.o: tclInt.h tcl.h
-tclUtil.o: stdlib.h string.h tcl.h
-tclUtil.o: tclInt.h
|