Makefile.rumpkern revision 1.93
1# $NetBSD: Makefile.rumpkern,v 1.93 2010/08/21 13:20:43 pgoyette Exp $ 2# 3 4.include "${RUMPTOP}/Makefile.rump" 5 6LIB= rump 7 8.PATH: ${RUMPTOP}/librump/rumpkern \ 9 ${RUMPTOP}/../kern \ 10 ${RUMPTOP}/../uvm \ 11 ${RUMPTOP}/../conf \ 12 ${RUMPTOP}/../dev \ 13 ${RUMPTOP}/../secmodel/suser 14 15# 16# Source modules, first the ones specifically implemented for librump. 17# 18SRCS= rump.c rumpcopy.c emul.c intr.c klock.c kobj_rename.c \ 19 ltsleep.c memalloc.c scheduler.c signals.c sleepq.c \ 20 sysproxy_socket.c threads.c vm.c 21SRCS+= compat.c 22 23# Multiprocessor or uniprocessor locking. TODO: select right 24# locking at runtime. 25SRCS+= locks.c 26#SRCS+= locks_up.c 27 28vers.c: ${RUMPTOP}/../conf/newvers.sh ${RUMPTOP}/../conf/osrelease.sh ${RUMPTOP}/../sys/param.h 29 ${_MKMSG_CREATE} vers.c 30 ${HOST_SH} ${RUMPTOP}/../conf/newvers.sh -i RUMP-ROAST -n 31SRCS+= vers.c 32CLEANFILES+= vers.c version 33 34# use MI pmap for archs not conforming to kernel ABI 35.ifndef RUMPKMOD 36SRCS+= pmap_stub.c 37.endif 38 39# autogenerated 40# 41SRCS+= rump_syscalls.c rumpkern_if_wrappers.c 42 43# "auto"generated 44SRCS+= devsw.c 45 46# 47# Rest are from the std kernel sources. 48# 49# sys/kern 50SRCS+= init_sysctl_base.c kern_auth.c kern_cfglock.c kern_descrip.c \ 51 kern_event.c kern_hook.c kern_ksyms.c kern_malloc_stdtype.c \ 52 kern_module.c kern_mutex_obj.c kern_ntptime.c kern_proc.c \ 53 kern_rate.c kern_resource.c kern_stub.c kern_syscall.c \ 54 kern_sysctl.c kern_tc.c kern_timeout.c kern_uidinfo.c param.c \ 55 sys_descrip.c sys_generic.c sys_module.c sys_pipe.c sys_select.c \ 56 syscalls.c 57 58# sys/kern subr (misc) 59SRCS+= subr_devsw.c subr_callback.c subr_copy.c subr_device.c \ 60 subr_evcnt.c subr_extent.c subr_hash.c subr_humanize.c \ 61 subr_iostat.c subr_kobj.c subr_log.c subr_lwp_specificdata.c \ 62 subr_once.c subr_prf.c subr_specificdata.c subr_time.c \ 63 subr_workqueue.c subr_xcall.c 64 65# sys/uvm 66SRCS+= uvm_readahead.c 67 68# 4.4BSD secmodel. selection is hardcoded for now 69SRCS+= secmodel_suser.c 70 71# the funny bit. this doesn't really belong here, but helps with the 72# needs of kern_descrip.c. And since it's a fully dynamic interface, 73# it doesn't pull in other gunk. 74SRCS+= vnode_if.c 75 76# sys/dev 77SRCS+= clock_subr.c 78 79# Flip the comment to the other line if you want to use malloc(3) 80# directly instead of the kernel allocators backed by malloc(3)/mmap(2). 81# Libc malloc is a few percent faster, but doesn't emulate all kernel 82# corner cases as well (not to mention if you want to debug the 83# allocators themselves). 84#CPPFLAGS+= -DRUMP_USE_UNREAL_ALLOCATORS 85SRCS+= subr_kmem.c subr_percpu.c subr_pool.c subr_vmem.c 86 87# no shlib_version because this is automatically in sync with lib/librump 88SHLIB_MAJOR= 0 89SHLIB_MINOR= 0 90 91CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpvfs 92CPPFLAGS+= -I${RUMPTOP}/librump/rumpnet -I${RUMPTOP}/librump/rumpdev 93AFLAGS+= -D_LOCORE -Wa,-fatal-warnings 94 95# 96# If archdir exists, it is required to provide: 97# 1) kobj_reloc() and kobj_machdep() 98# 2) rump_cpu_bootstrap() 99# 3) ...? 100# 4) PROFIT! 101# 102 103# 104# Check if we are building compat. In compat mode we need to provide 105# the kernel of our compat target (amd64->i386 & sparc64->sparc), so 106# take MD stuff from the right arch. 107# 108.ifdef MLIBDIR 109ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MLIBDIR} 110LIBKERN_ARCH= ${MLIBDIR} 111.elif exists(${RUMPTOP}/librump/rumpkern/arch/${MACHINE_CPU}) 112ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_CPU} 113.else 114ARCHDIR= ${RUMPTOP}/librump/rumpkern/arch/${MACHINE_ARCH} 115.endif 116.if exists(${ARCHDIR}) 117.include "${ARCHDIR}/Makefile.inc" 118.PATH: ${ARCHDIR} 119.else 120SRCS+= kobj_stubs.c rumpcpu_generic.c 121.endif 122 123.if ${MACHINE} == "sun3" 124CPPFLAGS+= -Dsun3 125.endif 126 127# include libkern source files 128KERNDIR=${RUMPTOP}/../lib/libkern 129.ifdef RUMPKMOD 130KERNMISCCPPFLAGS+= -D_RUMPKERNEL 131.endif 132.include "${RUMPTOP}/../lib/libkern/Makefile.libkern" 133 134# Some architectures require a little special massage with atomic 135# compare-and-swap. This is because the kernel version is using 136# instructions or routines unavailable to us in userspace. We 137# use effectively the multiprocessor version of the userspace ops. 138# 139.if ${MACHINE_CPU} == "arm" || ${MACHINE_CPU} == "hppa" \ 140 || ${MACHINE_CPU} == "mips" || ${MACHINE_CPU} == "sh3" \ 141 || ${MACHINE_CPU} == "vax" || ${MACHINE_ARCH} == "m68000" 142CPPFLAGS+= -I${RUMPTOP}/../../common/lib/libc/atomic 143SRCS+= atomic_cas_generic.c 144.endif 145 146.include <bsd.lib.mk> 147.include <bsd.klinks.mk> 148