1998-08-17 Martin Baulig <martin@home-of-linux.org> * include/glibtop/procmap (glibtop_map_entry): Added `offset' and `perm' fields. * src/inodedb: New directory. * src/inodedb/README: New file - read it to know what this is about. * configure.in (--with-libgtop-inodedb): New `configure' parameter. * include/glibtop/inodedb.h: New file. * sysdeps/common/inodedb.c: New file.
22 lines
565 B
Makefile
22 lines
565 B
Makefile
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
if INODEDB
|
|
inodedb_SRCLIST = inodedb.c
|
|
inodedb_DEFS = -DSYSTEM_INODEDB=\"$(prefix)/var/libgtop/inodedb.db\"
|
|
else
|
|
inodedb_SRCLIST =
|
|
inodedb_DEFS =
|
|
endif
|
|
|
|
CFLAGS = -Wall -W @CFLAGS@ $(inodedb_DEFS)
|
|
|
|
lib_LTLIBRARIES = libgtop_common.la libgtop_suid_common.la
|
|
|
|
libgtop_common_la_SOURCES = xmalloc.c error.c gnuslib.c \
|
|
fsusage.c fsusage.h mountlist.c mountlist.h \
|
|
$(inodedb_SRCLIST)
|
|
|
|
libgtop_suid_common_la_SOURCES = xmalloc.c error.c sysdeps_suid.c
|
|
|
|
EXTRA_DIST = inodedb.c
|