1998-07-14 Martin Baulig <martin@home-of-linux.org> * src/daemon/slave.c: New file. * src/daemon/*.c: Done some more work on the daemon. * sysdeps/common/gnuslib.c: Removed IPC stuff. * include/glibtop/gnuserv.h: Removed IPC stuff. * include/glibtop/command.h (glibtop_response_unit): Added typedef for `struct _glibtop_response_unit'. * lib/Makefile.am: Using `$(top_srcdir)/features.def' instead of `$(top_builddir)/features.def'. * sysdeps/guile/Makefile.am: Using `$(top_srcdir)/features.def' instead of `$(top_builddir)/features.def'. * sysdeps/guile/names/Makefile.am: Dito. * sysdeps/stub/*.c: changed suffix of all functions from '_s' to '_r'; see also ChangeLog entry from Jun 6.
24 lines
685 B
Makefile
24 lines
685 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@ -DGTOP_SERVER=\""@LIBGTOP_SERVER@"\"
|
|
|
|
lib_LTLIBRARIES = libgtop.la
|
|
|
|
libgtop_la_SOURCES = init.c open.c close.c command.c read.c read_data.c \
|
|
write.c lib.c parameter.c
|
|
|
|
BUILT_SOURCES = lib.c
|
|
|
|
lib.c: lib.awk $(top_builddir)/config.h $(top_srcdir)/features.def
|
|
$(AWK) -f $(srcdir)/lib.awk < $(top_srcdir)/features.def > lib-t
|
|
mv lib-t lib.c
|
|
|
|
EXTRA_DIST = lib.awk
|
|
|
|
CLEANFILES = lib.c
|
|
|