minix/servers/Makefile
Lionel Sambuc b1c4ba4ab6 ARM updates
Due to the ABI we are using we have to use the earm architecture
moniker for the build system to behave correctly. This involves
then some headers to move around.

There is also a few related Makefile updates as well as minor
source code corrections.
2013-01-17 10:03:58 +01:00

22 lines
319 B
Makefile

# Makefile for all system servers.
#
.include <bsd.own.mk>
.if ${MKIMAGEONLY} == "yes"
SUBDIR= ds init mfs pfs pm rs sched vfs vm
.else
SUBDIR= ds ext2 inet init ipc is iso9660fs \
mfs pfs pm procfs rs sched vfs vm devman
.if ${MACHINE_ARCH} == "i386"
SUBDIR+= hgfs vbfs
.endif
.endif
.include <bsd.subdir.mk>