Expand PMF_FN_* macros.
[netbsd-mini2440.git] / regress / sys / uvm / stack_noexec / Makefile
blob1a340bd126b7f5ef8817f53caf67045db6131a4b
1 # $NetBSD: Makefile,v 1.2 2004/02/19 16:55:30 drochner Exp $
3 NOMAN= #
5 .include <bsd.own.mk>
7 # tramptest.c relies on a trampoline generated by gcc,
8 # which happens for the following architectures:
10 GCCTRAMP_ARCHS= alpha arm i386 m68k mips sparc sparc64 vax x86_64
12 .if !empty(GCCTRAMP_ARCHS:M${MACHINE_GNU_ARCH})
13 PROG= tramptest
14 regress: ${PROG}
15 @if ./tramptest; then \
16 echo "PASSED"; \
17 else \
18 echo "FAILED"; \
20 .else
21 # XXX need another test program
22 regress:
23 .endif
25 .include <bsd.prog.mk>