mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 02:10:09 -04:00
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
11 lines
256 B
Makefile
11 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>
|