Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / rump / librump / rumpkern / Makefile.rumpkern
bloba38e1ba99e7ee1268c127dd1164d884fe3114b1d
1 #       $NetBSD: Makefile.rumpkern,v 1.69 2009/12/16 20:57:15 pooka Exp $
4 .include "${RUMPTOP}/Makefile.rump"
6 LIB=            rump
8 .PATH:  ${RUMPTOP}/librump/rumpkern                             \
9         ${RUMPTOP}/../kern                                      \
10         ${RUMPTOP}/../uvm                                       \
11         ${RUMPTOP}/../conf                                      \
12         ${RUMPTOP}/../dev                                       \
13         ${RUMPTOP}/../secmodel/suser
16 # Source modules, first the ones specifically implemented for librump.
17
18 SRCS=   rump.c rumpcopy.c emul.c intr.c locks.c ltsleep.c       \
19         memalloc.c percpu.c scheduler.c sleepq.c                \
20         sysproxy_socket.c threads.c vm.c
22 vers.c: ${RUMPTOP}/../conf/newvers.sh ${RUMPTOP}/../conf/osrelease.sh
23         ${_MKMSG_CREATE} vers.c
24         ${HOST_SH} ${RUMPTOP}/../conf/newvers.sh -i RUMP-ROAST -n
25 SRCS+=          vers.c
26 CLEANFILES+=    vers.c version
28 # stubs
30 SRCS+=  pmap_stub.c
32 # autogenerated
34 SRCS+=  rump_syscalls.c rumpkern_if_wrappers.c
37 # Rest are from the std kernel sources.
39 # sys/kern
40 SRCS+=  init_sysctl_base.c kern_auth.c kern_descrip.c kern_event.c      \
41         kern_ksyms.c kern_malloc_stdtype.c kern_module.c                \
42         kern_mutex_obj.c kern_rate.c kern_stub.c kern_sysctl.c          \
43         kern_timeout.c kern_uidinfo.c param.c                           \
44         sys_descrip.c sys_generic.c sys_pipe.c sys_select.c syscalls.c
46 # sys/kern subr (misc)
47 SRCS+=  subr_devsw.c subr_callback.c subr_copy.c subr_evcnt.c           \
48         subr_extent.c subr_hash.c subr_humanize.c subr_iostat.c         \
49         subr_kobj.c subr_log.c subr_once.c subr_prf.c                   \
50         subr_specificdata.c subr_time.c subr_workqueue.c subr_xcall.c
52 # sys/uvm
53 SRCS+=  uvm_readahead.c
55 # 4.4BSD secmodel.  selection is hardcoded for now
56 SRCS+=  secmodel_suser.c
58 # the funny bit.  this doesn't really belong here, but helps with the
59 # needs of kern_descrip.c.  And since it's a fully dynamic interface,
60 # it doesn't pull in other gunk.
61 SRCS+=  vnode_if.c
63 # sys/dev
64 SRCS+=  clock_subr.c
66 # Flip the comment to the other line if you want to use malloc(3)
67 # directly instead of the kernel allocators backed by malloc(3)/mmap(2).
68 # Libc malloc is a few percent faster, but doesn't emulate all kernel
69 # corner cases as well (not to mention if you want to debug the
70 # allocators themselves).
71 #CPPFLAGS+=     -DRUMP_USE_UNREAL_ALLOCATORS
72 SRCS+=          subr_kmem.c subr_pool.c subr_vmem.c
74 # no shlib_version because this is automatically in sync with lib/librump
75 SHLIB_MAJOR=    0
76 SHLIB_MINOR=    0
78 CPPFLAGS+=      -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpvfs
79 CPPFLAGS+=      -I${RUMPTOP}/librump/rumpnet -I${RUMPTOP}/librump/rumpdev
80 CFLAGS+=        -Wno-pointer-sign
81 AFLAGS+=        -D_LOCORE -Wa,-fatal-warnings
84 # If archdir exists, it is required to provide:
85 # 1) kobj_reloc() and kobj_machdep()
86 # 2) rump_cpu_bootstrap()
87 # 3) ...?
88 # 4) PROFIT!
92 # Check if we are building compat.  In compat mode we need to provide
93 # the kernel of our compat target (amd64->i386 & sparc64->sparc), so
94 # take MD stuff from the right arch.
96 .ifdef MLIBDIR
97 ARCHDIR=        ${RUMPTOP}/librump/rumpkern/arch/${MLIBDIR}
98 LIBKERN_ARCH=   ${MLIBDIR}
99 .elif exists(${RUMPTOP}/librump/rumpkern/arch/${MACHINE_CPU})
100 ARCHDIR=        ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_CPU}
101 .else
102 ARCHDIR=        ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_ARCH}
103 .endif
104 .if exists(${ARCHDIR})
105 .include "${ARCHDIR}/Makefile.inc"
106 .PATH:  ${ARCHDIR}
107 .else
108 SRCS+=  kobj_stubs.c rumpcpu_generic.c
109 .endif
111 # include libkern source files
112 KERNDIR=${RUMPTOP}/../lib/libkern
113 .include "${RUMPTOP}/../lib/libkern/Makefile.libkern"
115 # Some architectures require a little special massage with atomic
116 # compare-and-swap.  This is because the kernel version is using
117 # instructions or routines unavailable to us in userspace.  We
118 # use effectively the multiprocessor version of the userspace ops.
120 .if ${MACHINE_CPU} == "arm" || ${MACHINE_CPU} == "hppa" \
121     || ${MACHINE_CPU} == "mips" || ${MACHINE_CPU} == "sh3" \
122     || ${MACHINE_CPU} == "vax" || ${MACHINE_ARCH} == "m68000"
123 CPPFLAGS+=      -I${RUMPTOP}/../../common/lib/libc/atomic
124 SRCS+=          atomic_cas_generic.c
125 .endif
127 .include <bsd.lib.mk>
128 .include <bsd.klinks.mk>