2000-01-01 Martin Baulig <martin@home-of-linux.org> Initial version of the "glibtop-backend-server" backend. * command.c, read.c, read_data.c, write.c: New files. Moved here from the `lib' directory. * backend-server.c: New file. * glibtop-backend-private.h: New file. * marshal.pl: New file. Automatically creates `marshal.c'.
31 lines
652 B
Makefile
31 lines
652 B
Makefile
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
INCLUDES = @INCLUDES@
|
|
|
|
noinst_HEADERS = \
|
|
glibtop-backend-private.h
|
|
|
|
lib_LTLIBRARIES = \
|
|
libgtop_backend_server.la
|
|
|
|
libgtop_backend_server_la_SOURCES = \
|
|
backend-server.c \
|
|
marshal.c \
|
|
command.c \
|
|
read.c \
|
|
read_data.c \
|
|
write.c
|
|
|
|
libgtop_backend_server_la_LDFLAGS = \
|
|
$(LT_VERSION_INFO)
|
|
|
|
BUILT_SOURCES = \
|
|
marshal.c
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
marshal.c: marshal.pl $(top_builddir)/config.h $(top_srcdir)/features.def $(top_srcdir)/scripts/c_types.pl
|
|
$(PERL) -I $(top_srcdir)/scripts $(srcdir)/marshal.pl < $(top_srcdir)/features.def > tmp-t
|
|
mv tmp-t marshal.c
|
|
|