summaryrefslogtreecommitdiff
path: root/minix/kernel/system/Makefile.inc
blob: 8c188a2e43c249d0b7a1371feddb9baa60c8ea70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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

.if ${MACHINE_ARCH} == "i386"
SRCS+=  \
	do_devio.c \
	do_vdevio.c
.endif