blob: b880c2c4ab62373979f8fb55d24fe7c71a1d19d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $OpenBSD: Makefile,v 1.5 2021/02/12 12:03:39 otto Exp $
REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11
PROG= malloc_general
.include <bsd.regress.mk>
t1: malloc_general
MALLOC_OPTIONS=cfgju ${.OBJDIR}/malloc_general
t2: malloc_general
MALLOC_OPTIONS=cfgjuC ${.OBJDIR}//malloc_general
t3: malloc_general
MALLOC_OPTIONS=cfgjuJ ${.OBJDIR}//malloc_general
t4: malloc_general
MALLOC_OPTIONS=cfgjuF ${.OBJDIR}//malloc_general
t5: malloc_general
MALLOC_OPTIONS=cfgjuG ${.OBJDIR}//malloc_general
t6: malloc_general
MALLOC_OPTIONS=cfgjuS ${.OBJDIR}//malloc_general
t7: malloc_general
MALLOC_OPTIONS=cfgjuFGJ ${.OBJDIR}//malloc_general
t8: malloc_general
MALLOC_OPTIONS=cfgjuCJ ${.OBJDIR}/malloc_general
t9: malloc_general
MALLOC_OPTIONS=cfgjuCJJ ${.OBJDIR}/malloc_general
t10: malloc_general
MALLOC_OPTIONS=cfgjuJS ${.OBJDIR}//malloc_general
t11: malloc_general
MALLOC_OPTIONS=cfgjuFGJJ ${.OBJDIR}//malloc_general
|