2005-04-21 16:53:53 +02:00
|
|
|
# Makefile for all system servers.
|
|
|
|
#
|
|
|
|
|
2010-06-25 20:29:09 +02:00
|
|
|
.include <bsd.own.mk>
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2011-08-17 15:23:45 +02:00
|
|
|
.if ${BUILDAVFS} == "yes"
|
|
|
|
VFS= "avfs"
|
|
|
|
PFS= "apfs"
|
|
|
|
.else
|
|
|
|
VFS= "vfs"
|
|
|
|
PFS= "pfs"
|
|
|
|
.endif
|
|
|
|
|
2011-07-20 09:57:08 +02:00
|
|
|
.if ${MKIMAGEONLY} == "yes"
|
|
|
|
|
2011-08-17 15:23:45 +02:00
|
|
|
SUBDIR= ds init mfs ${PFS} pm rs sched ${VFS} vm
|
2011-07-20 09:57:08 +02:00
|
|
|
|
|
|
|
.else
|
|
|
|
|
2010-09-14 23:25:25 +02:00
|
|
|
SUBDIR= ds ext2 hgfs inet init ipc is iso9660fs \
|
2011-08-17 15:23:45 +02:00
|
|
|
mfs ${PFS} pm procfs rs sched ${VFS} vm devman
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2011-07-20 09:57:08 +02:00
|
|
|
.endif
|
2005-08-23 14:53:35 +02:00
|
|
|
|
2010-06-25 20:29:09 +02:00
|
|
|
.include <bsd.subdir.mk>
|