summaryrefslogtreecommitdiff
path: root/regress/sys/kern/stackpivot/Makefile
blob: a9f963de3a00cf4ba51d4cdfc5e3f4670471e21e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

.if ${MACHINE} != "arm64" && \
    ${MACHINE} != "amd64" && \
    ${MACHINE} != "i386" && \
    ${MACHINE} != "powerpc64" && \
    ${MACHINE_ARCH} != "powerpc" && \
    ${MACHINE_ARCH} != "mips64" && \
    ${MACHINE_ARCH} != "mips64el"
REGRESS_TARGETS=run-regress-skiparch
run-regress-skiparch:
	# Need stack pivot asm for MACHINE ${MACHINE} / MACHINE_ARCH ${MACHINE_ARCH}
	@echo SKIPPED
.include <bsd.regress.mk>
.else
SUBDIR += syscall
SUBDIR += pagefault
.include <bsd.subdir.mk>
.endif