2000-01-23 Martin Baulig <martin@home-of-linux.org> * lib/sysdeps-init-kernel.c: Load the "glibtop-backend-kernel" before "glibtop-backend-command" and "glibtop-backend-sysdeps". * libgtop-sysdeps.m4: "kernel" is now a backend and no longer a sysdeps port; we compile the normal "linux" sysdeps dir when we have it. * backends/Makefile.am: Only compile `server' and `sysdeps' directories if appropriate.
16 lines
210 B
Makefile
16 lines
210 B
Makefile
if NEED_LIBGTOP
|
|
server_dir = server
|
|
else
|
|
server_dir =
|
|
endif
|
|
|
|
if HAVE_SYSDEPS
|
|
sysdeps_dir = sysdeps
|
|
else
|
|
sysdeps_dir =
|
|
endif
|
|
|
|
SUBDIRS = $(server_dir) $(sysdeps_dir) common
|
|
|
|
DIST_SUBDIRS = server sysdeps common
|