mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-22 16:44:32 +01:00
adb52cac6c
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
12 lines
256 B
Makefile
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>
|