ee4cff8d66
- taskcall.c is 3x in the trunk as part of libc, libsysutil and libsys. It should be only part of libsys. - only system process should be linked with libsys, therefore using raw _taskcall() in service.c is replaced by _syscall() - the same for minix_rs.c - lib/other/sys_eniop.c can go without replacement as it is part of syslib
32 lines
450 B
Makefile
32 lines
450 B
Makefile
# Makefile for lib/sysutil.
|
|
|
|
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE"
|
|
|
|
LIBRARIES=libsys
|
|
|
|
libsys_FILES=" \
|
|
asynsend.c \
|
|
kprintf.c \
|
|
kputc.c \
|
|
tickdelay.c \
|
|
get_randomness.c \
|
|
getidle.c \
|
|
getuptime.c \
|
|
getuptime2.c \
|
|
env_get_prm.c \
|
|
env_parse.c \
|
|
env_panic.c \
|
|
env_prefix.c \
|
|
fkey_ctl.c \
|
|
tsc_util.c \
|
|
report.c \
|
|
read_tsc.s \
|
|
read_tsc_64.c \
|
|
ser_putc.c \
|
|
stacktrace.c \
|
|
sys_hz.c \
|
|
timing.c \
|
|
profile_extern.c \
|
|
profile.c"
|
|
|
|
TYPE=both
|