1998-06-14 Martin Baulig <martin@home-of-linux.org> * kernel.s: New file - declaration of the table () function via _syscall3 (); due to a bug in egcs, we cannot put this into a C file.
24 lines
736 B
Makefile
24 lines
736 B
Makefile
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
INCLUDES = -I$(top_builddir) -I$(top_srcdir) @machine_incs@ \
|
|
-I$(top_srcdir)/include -I$(top_srcdir)/intl @GUILE_INCS@ \
|
|
-DGTOPLOCALEDIR=\"$(datadir)/locale\" -D_GNU_SOURCE
|
|
|
|
CFLAGS = -Wall -W @CFLAGS@
|
|
|
|
lib_LTLIBRARIES = libgtop_sysdeps.la
|
|
|
|
libgtop_sysdeps_la_SOURCES = init.c open.c close.c kernel.s cpu.c mem.c swap.c \
|
|
uptime.c loadavg.c shm_limits.c msg_limits.c \
|
|
sem_limits.c proclist.c procstate.c procuid.c \
|
|
proctime.c procmem.c procsignal.c prockernel.c \
|
|
procsegment.c
|
|
|
|
include_HEADERS = glibtop_server.h
|
|
|
|
kernel.o kernel.lo: kernel.s
|
|
rm -f kernel.o kernel.lo
|
|
$(AS) -o kernel.o kernel.s
|
|
cp kernel.o kernel.lo
|
|
|