]>
Commit | Line | Data |
---|---|---|
1 | .PATH: ${.CURDIR}/ppc/gen | |
2 | ||
3 | MDSRCS += \ | |
4 | abs.s \ | |
5 | fp.h \ | |
6 | icacheinval.s \ | |
7 | mcount.s \ | |
8 | setjmperr.c \ | |
9 | _ctx_start.S \ | |
10 | getcontext.S \ | |
11 | getmcontext.c \ | |
12 | makecontext.c \ | |
13 | _setcontext.S \ | |
14 | setcontext.c \ | |
15 | swapcontext.c | |
16 | ||
17 | SUPPRESSSRCS += memcpy.c memmove.c memset.c | |
18 | ||
19 | # makecontext.c can only compile with __DARWIN_UNIX03=0 because the structure | |
20 | # field names are renamed with __ prefix when __DARWIN_UNIX03=1. If | |
21 | # makecontext.c ever needs to build variant, this will have to be fix properly | |
22 | CFLAGS-makecontext.c = -U__DARWIN_UNIX03 -D__DARWIN_UNIX03=0 |