minix/minix/kernel/system/Makefile.inc
Sanchayan Maity 6f36b466f3 minix: Prepare for message queue support to Minix kernel
This commit adds preparatory support for forthcoming message
queue implementation to the Minix kernel. The core implementation
will be added with the next commit.
2016-02-29 20:43:07 +05:30

52 lines
780 B
Makefile

# Makefile for system library implementation
.include <bsd.own.mk>
.PATH: ${.CURDIR}/system
SRCS+= \
do_fork.c \
do_exec.c \
do_clear.c \
do_exit.c \
do_trace.c \
do_runctl.c \
do_update.c \
do_times.c \
do_setalarm.c \
do_stime.c \
do_settime.c \
do_vtimer.c \
do_irqctl.c \
do_copy.c \
do_umap.c \
do_umap_remote.c \
do_vumap.c \
do_memset.c \
do_setgrant.c \
do_privctl.c \
do_safecopy.c \
do_safememset.c \
do_diagctl.c \
do_getksig.c \
do_endksig.c \
do_kill.c \
do_sigsend.c \
do_sigreturn.c \
do_abort.c \
do_getinfo.c \
do_vmctl.c \
do_mcontext.c \
do_schedule.c \
do_schedctl.c \
do_statectl.c \
do_mq_open.c \
do_mq_close.c \
do_mq_send.c \
do_mq_rec.c
.if ${MACHINE_ARCH} == "i386"
SRCS+= \
do_devio.c \
do_vdevio.c
.endif