diff options
| author | otto <> | 2017-01-24 15:32:20 +0000 |
|---|---|---|
| committer | otto <> | 2017-01-24 15:32:20 +0000 |
| commit | fe5134794a01afb621ceaefd31b817f891ddce2b (patch) | |
| tree | 2a8160095cd9d2b7e42e6b2aa69387c2deee73e2 | |
| parent | f904ac28f392ed05533f54c6bfb0398c62dcb37d (diff) | |
| download | openbsd-fe5134794a01afb621ceaefd31b817f891ddce2b.tar.gz openbsd-fe5134794a01afb621ceaefd31b817f891ddce2b.tar.bz2 openbsd-fe5134794a01afb621ceaefd31b817f891ddce2b.zip | |
use ${.OBJDIR}
Diffstat (limited to '')
| -rw-r--r-- | src/regress/lib/libc/malloc/malloc_general/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/regress/lib/libc/malloc/malloc_general/Makefile b/src/regress/lib/libc/malloc/malloc_general/Makefile index 18151b1ea0..ad6b6dcfbe 100644 --- a/src/regress/lib/libc/malloc/malloc_general/Makefile +++ b/src/regress/lib/libc/malloc/malloc_general/Makefile | |||
| @@ -1,26 +1,26 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2017/01/23 11:06:32 otto Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2017/01/24 15:32:20 otto Exp $ |
| 2 | 2 | ||
| 3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 | 3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 |
| 4 | 4 | ||
| 5 | .include <bsd.regress.mk> | 5 | .include <bsd.regress.mk> |
| 6 | 6 | ||
| 7 | t1: malloc_general | 7 | t1: malloc_general |
| 8 | malloc_general "" | 8 | ${.OBJDIR}/malloc_general "" |
| 9 | 9 | ||
| 10 | t2: malloc_general | 10 | t2: malloc_general |
| 11 | malloc_general C | 11 | ${.OBJDIR}//malloc_general C |
| 12 | 12 | ||
| 13 | t3: malloc_general | 13 | t3: malloc_general |
| 14 | malloc_general J | 14 | ${.OBJDIR}//malloc_general J |
| 15 | 15 | ||
| 16 | t4: malloc_general | 16 | t4: malloc_general |
| 17 | malloc_general F | 17 | ${.OBJDIR}//malloc_general F |
| 18 | 18 | ||
| 19 | t5: malloc_general | 19 | t5: malloc_general |
| 20 | malloc_general G | 20 | ${.OBJDIR}//malloc_general G |
| 21 | 21 | ||
| 22 | t6: malloc_general | 22 | t6: malloc_general |
| 23 | malloc_general S | 23 | ${.OBJDIR}//malloc_general S |
| 24 | 24 | ||
| 25 | t7: malloc_general | 25 | t7: malloc_general |
| 26 | malloc_general FGJ | 26 | ${.OBJDIR}//malloc_general FGJ |
