1998-07-22 Martin Baulig <martin@home-of-linux.org> * sysdeps/common/Makefile.am (libgtop_common_la_SOURCES): Added `fsusage.[ch]' and `mountlist.[ch]'. * include/glibtop/signal.h: New file. * sysdeps/{kernel, linux, osf1, sun4, stub}/siglist.c: New files.
24 lines
759 B
Makefile
24 lines
759 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 = 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 siglist.c
|
|
|
|
include_HEADERS = glibtop_server.h
|
|
|
|
kernel.o kernel.lo: $(srcdir)/kernel.s
|
|
rm -f kernel.o kernel.lo
|
|
$(AS) -o kernel.o $(srcdir)/kernel.s
|
|
cp kernel.o kernel.lo
|
|
|