cc17b27a2b
3 sets of libraries are built now: . ack: all libraries that ack can compile (/usr/lib/i386/) . clang+elf: all libraries with minix headers (/usr/lib/) . clang+elf: all libraries with netbsd headers (/usr/netbsd/) Once everything can be compiled with netbsd libraries and headers, the /usr/netbsd hierarchy will be obsolete and its libraries compiled with netbsd headers will be installed in /usr/lib, and its headers in /usr/include. (i.e. minix libc and current minix headers set will be gone.) To use the NetBSD libc system (libraries + headers) before it is the default libc, see: http://wiki.minix3.org/en/DevelopersGuide/UsingNetBSDCode This wiki page also documents the maintenance of the patch files of minix-specific changes to imported NetBSD code. Changes in this commit: . libsys: Add NBSD compilation and create a safe NBSD-based libc. . Port rest of libraries (except libddekit) to new header system. . Enable compilation of libddekit with new headers. . Enable kernel compilation with new headers. . Enable drivers compilation with new headers. . Port legacy commands to new headers and libc. . Port servers to new headers. . Add <sys/sigcontext.h> in compat library. . Remove dependency file in tree. . Enable compilation of common/lib/libc/atomic in libsys . Do not generate RCSID strings in libc. . Temporarily disable zoneinfo as they are incompatible with NetBSD format . obj-nbsd for .gitignore . Procfs: use only integer arithmetic. (Antoine Leca) . Increase ramdisk size to create NBSD-based images. . Remove INCSYMLINKS handling hack. . Add nbsd_include/sys/exec_elf.h . Enable ELF compilation with NBSD libc. . Add 'make nbsdsrc' in tools to download reference NetBSD sources. . Automate minix-port.patch creation. . Avoid using fstavfs() as it is *extremely* slow and unneeded. . Set err() as PRIVATE to avoid name clash with libc. . [NBSD] servers/vm: remove compilation warnings. . u32 is not a long in NBSD headers. . UPDATING info on netbsd hierarchy . commands fixes for netbsd libc
136 lines
2 KiB
Makefile
136 lines
2 KiB
Makefile
# Makefile for libsys
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= sys
|
|
|
|
SRCS= \
|
|
alloc_util.c \
|
|
assert.c \
|
|
asynsend.c \
|
|
ds.c \
|
|
env_get_prm.c \
|
|
env_panic.c \
|
|
env_parse.c \
|
|
env_prefix.c \
|
|
fkey_ctl.c \
|
|
gcov.c \
|
|
get_randomness.c \
|
|
getidle.c \
|
|
getsysinfo.c \
|
|
getuptime.c \
|
|
getuptime2.c \
|
|
input.c \
|
|
kernel_call.c \
|
|
kprintf.c \
|
|
kputc.c \
|
|
kputs.c \
|
|
panic.c \
|
|
pci_attr_r16.c \
|
|
pci_attr_r32.c \
|
|
pci_attr_r8.c \
|
|
pci_attr_w16.c \
|
|
pci_attr_w32.c \
|
|
pci_attr_w8.c \
|
|
pci_del_acl.c \
|
|
pci_dev_name.c \
|
|
pci_find_dev.c \
|
|
pci_first_dev.c \
|
|
pci_get_bar.c \
|
|
pci_ids.c \
|
|
pci_init.c \
|
|
pci_init1.c \
|
|
pci_next_dev.c \
|
|
pci_rescan_bus.c \
|
|
pci_reserve.c \
|
|
pci_set_acl.c \
|
|
pci_slot_name.c \
|
|
profile.c \
|
|
profile_extern.c \
|
|
safecopies.c \
|
|
sched_start.c \
|
|
sched_stop.c \
|
|
sef.c \
|
|
sef_gcov.c \
|
|
sef_init.c \
|
|
sef_liveupdate.c \
|
|
sef_ping.c \
|
|
sef_signal.c \
|
|
ser_putc.c \
|
|
spin.c \
|
|
stacktrace.c \
|
|
sys_abort.c \
|
|
sys_clear.c \
|
|
sys_cprof.c \
|
|
sys_endsig.c \
|
|
sys_eniop.c \
|
|
sys_exec.c \
|
|
sys_exit.c \
|
|
sys_fork.c \
|
|
sys_getinfo.c \
|
|
sys_getsig.c \
|
|
sys_hz.c \
|
|
sys_in.c \
|
|
sys_int86.c \
|
|
sys_irqctl.c \
|
|
sys_kill.c \
|
|
sys_mcontext.c \
|
|
sys_memset.c \
|
|
sys_newmap.c \
|
|
sys_out.c \
|
|
sys_physcopy.c \
|
|
sys_privctl.c \
|
|
sys_profbuf.c \
|
|
sys_readbios.c \
|
|
sys_runctl.c \
|
|
sys_safecopy.c \
|
|
sys_safemap.c \
|
|
sys_schedctl.c \
|
|
sys_schedule.c \
|
|
sys_sdevio.c \
|
|
sys_setalarm.c \
|
|
sys_setgrant.c \
|
|
sys_sigreturn.c \
|
|
sys_sigsend.c \
|
|
sys_sprof.c \
|
|
sys_statectl.c \
|
|
sys_stime.c \
|
|
sys_sysctl.c \
|
|
sys_times.c \
|
|
sys_trace.c \
|
|
sys_umap.c \
|
|
sys_umap_remote.c \
|
|
sys_update.c \
|
|
sys_vinb.c \
|
|
sys_vinl.c \
|
|
sys_vinw.c \
|
|
sys_vircopy.c \
|
|
sys_vmctl.c \
|
|
sys_voutb.c \
|
|
sys_voutl.c \
|
|
sys_voutw.c \
|
|
sys_vsafecopy.c \
|
|
sys_vtimer.c \
|
|
taskcall.c \
|
|
tickdelay.c \
|
|
timers.c \
|
|
timing.c \
|
|
tsc_util.c \
|
|
vm_brk.c \
|
|
vm_exec_newmem.c \
|
|
vm_exit.c \
|
|
vm_fork.c \
|
|
vm_info.c \
|
|
vm_map_phys.c \
|
|
vm_notify_sig.c \
|
|
vm_push_sig.c \
|
|
vm_umap.c \
|
|
vm_yield_get_block.c \
|
|
vprintf.c \
|
|
|
|
CPPFLAGS.sched_start.c+= -I${MINIXSRCDIR}
|
|
|
|
.if (${NBSD_LIBC} != "no")
|
|
.include "Makefile.libc.inc"
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|