1999-02-16 Martin Baulig <martin@home-of-linux.org> * examples/Makefile.am, lib/Makefile.am, src/daemon/Makefile.am, sysdeps/common/Makefile.am, sysdeps/guile/Makefile.am, sysdeps/guile/names/Makefile.am, sysdeps/kernel/Makefile.am, sysdeps/linux/Makefile.am, sysdeps/names/Makefile.am, sysdeps/osf1/Makefile.am, sysdeps/stub/Makefile.am, sysdeps/stub_suid/Makefile.am, sysdeps/sun4/Makefile.am: Initialize INCLUDES to `@INCLUDES@' to make it clear that it is set in configure.in. It is ok to add things there, but you must not remove the `@INCLUDES@'.
29 lines
731 B
Makefile
29 lines
731 B
Makefile
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
INCLUDES = @INCLUDES@
|
|
|
|
if INODEDB
|
|
inodedb_SRCLIST = inodedb.c
|
|
inodedb_DEFS = -DSYSTEM_INODEDB=\"$(prefix)/var/libgtop/inodedb.db\"
|
|
else
|
|
inodedb_SRCLIST =
|
|
inodedb_DEFS =
|
|
endif
|
|
|
|
CFLAGS = @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_common_la_LDFLAGS = $(LT_VERSION_INFO)
|
|
libgtop_common_la_LIBADD = $(LIBGTOP_EXTRA_LIBS)
|
|
|
|
libgtop_suid_common_la_SOURCES = xmalloc.c error.c sysdeps_suid.c
|
|
|
|
libgtop_suid_common_la_LDFLAGS = $(LT_VERSION_INFO)
|
|
|
|
EXTRA_DIST = inodedb.c
|