6d50591226
. read_tsc() in sysutil library saves edx and eax now . added read_tsc_64() by Antonio Mancina to load tsc into a 64-bit data type directly . deleted read_tsc.h in favour of a prototype in <minix/syslib.h>
25 lines
352 B
Makefile
25 lines
352 B
Makefile
# Makefile for lib/utils.
|
|
|
|
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE"
|
|
|
|
LIBRARIES=libsysutil
|
|
|
|
libsysutil_FILES=" \
|
|
kmalloc.c \
|
|
kprintf.c \
|
|
kputc.c \
|
|
tickdelay.c \
|
|
getuptime.c \
|
|
env_get_prm.c \
|
|
env_parse.c \
|
|
env_panic.c \
|
|
env_prefix.c \
|
|
fkey_ctl.c \
|
|
report.c \
|
|
taskcall.c \
|
|
read_tsc.s \
|
|
read_tsc_64.c \
|
|
profile_extern.c \
|
|
profile.c"
|
|
|
|
TYPE=both
|