mirror of
https://github.com/opnsense/src.git
synced 2026-03-31 06:55:18 -04:00
Start fresh on master, only apply needed patches on top now. Upstream commit: 56279fdef34eb28a4655b489b992c651bd8379fc Taken from: FreeBSD
16 lines
345 B
Makefile
16 lines
345 B
Makefile
# $FreeBSD$
|
|
PROG= malloc
|
|
SRCS= main.c
|
|
.PATH: ${.CURDIR}/../../../lib/libc/stdlib
|
|
|
|
MAN=
|
|
WARNS?=6
|
|
|
|
test: malloc
|
|
@echo
|
|
@csh -x -c "time ./malloc 500000 2000 8192"
|
|
@csh -x -c "time ./malloc 50000000 2000 8192"
|
|
@csh -x -c "time ./malloc 500000 14000 8192"
|
|
@csh -x -c "time ./malloc 20000000 20000 2048"
|
|
|
|
.include <bsd.prog.mk>
|