]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/boot/Makefile
Implement setfsuid and setfsgid. Implementation derived from patch
[FreeBSD/FreeBSD.git] / sys / boot / Makefile
1 # $FreeBSD$
2
3 # Build the add-in FORTH interpreter
4 SUBDIR+=                ficl
5
6 # Pick the machine-dependant subdir based on the target architecture.
7 # XXX pc98 is basicly a special i386 with MACHINE_ARCH=i386 and MACHINE=pc98.
8 .if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
9 SUBDIR+=                ${MACHINE}
10 .else
11 SUBDIR+=                ${MACHINE_ARCH}
12 .endif
13
14 # Build ARC / AlphaBIOS executable on the Alpha
15 .if ${MACHINE_ARCH} == "alpha"
16 SUBDIR+=                arc
17 .endif
18
19 .include <bsd.subdir.mk>