minix/lib/sysutil/Makefile.in
Ben Gras 6d50591226 . let kernel use read_tsc() from sysutil library
. 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>
2007-03-08 15:39:14 +00:00

26 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