diff options
author | phk <phk@FreeBSD.org> | 1995-09-22 14:14:32 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-09-22 14:14:32 +0000 |
commit | d6ac54a0db32a8b6debbcfe209a1c92ffbdbf652 (patch) | |
tree | f9939c3582af50ab3af1230eb1bc28d77d548ec4 /usr.bin/make | |
parent | 42a27824b7e94c17649f1bf4eecce7949d3728da (diff) | |
download | FreeBSD-src-d6ac54a0db32a8b6debbcfe209a1c92ffbdbf652.zip FreeBSD-src-d6ac54a0db32a8b6debbcfe209a1c92ffbdbf652.tar.gz |
Stop using gnumalloc.
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index c4c4064..09142d5 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.2 (Berkeley) 12/28/90 -# $Id: Makefile,v 1.3 1995/01/23 21:00:09 jkh Exp $ +# $Id: Makefile,v 1.4 1995/06/16 22:46:38 ache Exp $ PROG= make CFLAGS+= -I${.CURDIR} -DPOSIX -DSYSVINCLUDE @@ -12,7 +12,4 @@ SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c .PATH: ${.CURDIR}/lst.lib -LDADD+= -lgnumalloc -DPADD+= /usr/lib/libgnumalloc.a - .include <bsd.prog.mk> |