freebsd-dev/gnu/lib/libmalloc/Makefile
Rich Murphey adb52cac6c merge free.c realloc.c into malloc.c so that all three are linked in
if any are referenced.

libc's malloc.o contains malloc(), free() and realloc().  And libc
refers to realloc which will cause the linker to pull in redundant
malloc() and free() definitions from malloc.o if it isn't already
linked in from GNU malloc.  Rich
1993-10-19 18:22:37 +00:00

12 lines
256 B
Makefile

# $Id: Makefile,v 1.1 1993/09/24 13:03:14 rgrimes Exp $
CFLAGS+= -I${.CURDIR}
LIB= gnumalloc
SRCS+= malloc.c cfree.c calloc.c morecore.c
SRCS+= memalign.c valloc.c mcheck.c mtrace.c mstats.c vm-limit.c
SRCS+= ralloc.c
NOMAN= noman
.include <bsd.lib.mk>