diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-12-09 18:20:07 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-12-09 18:20:07 +0000 |
commit | 84481eae7e455e18eb9a60235265481dde0c119a (patch) | |
tree | 64ed2d5c90aa3f85393af0c9a24e0f46afefc1de /usr.bin/make/Makefile | |
parent | d9223f1d8df224b1ed3755c095dd99fd859077d2 (diff) |
Split some allocation/error handling functions out of main.c
Diffstat (limited to 'usr.bin/make/Makefile')
-rw-r--r-- | usr.bin/make/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index a9f601f0d02..2b4e9c54db4 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 1999/11/10 14:11:49 espie Exp $ +# $OpenBSD: Makefile,v 1.12 1999/12/09 18:20:06 espie Exp $ PROG= make CFLAGS+= -I${.CURDIR} -Wall -Wno-char-subscripts -Wno-unused -Wstrict-prototypes#-Wmissing-prototypes -Wstrict-prototypes @@ -7,7 +7,7 @@ CFLAGS+= -I${.CURDIR} -Wall -Wno-char-subscripts -Wno-unused -Wstrict-prototypes CFLAGS+=-O0 .endif -SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ +SRCS= arch.c buf.c compat.c cond.c dir.c error.c for.c hash.c job.c main.c \ make.c parse.c str.c suff.c targ.c var.c #util.c SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \ |