mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
15 lines
324 B
Makefile
15 lines
324 B
Makefile
PROG= malloc
|
|
SRCS= main.c
|
|
.PATH: ${.CURDIR}/../../../lib/libc/stdlib
|
|
|
|
MAN=
|
|
|
|
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>
|