1999-02-15 Jeff Garzik <jgarzik@pobox.com> * 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: Removed hardcoded gcc arguments. Converted remaining CFLAGS settings to use correct INCLUDES. * include/glibtop/error.h: Added FIXME comment about varargs macros breaking Sun cc compilation.
16 lines
564 B
Makefile
16 lines
564 B
Makefile
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
lib_LTLIBRARIES = libgtop_sysdeps.la
|
|
|
|
libgtop_sysdeps_la_SOURCES = open.c close.c cpu.c mem.c swap.c \
|
|
uptime.c loadavg.c shm_limits.c msg_limits.c \
|
|
sem_limits.c proclist.c procstate.c procuid.c \
|
|
proctime.c procmem.c procsignal.c prockernel.c \
|
|
procsegment.c procargs.c procmap.c siglist.c \
|
|
sysinfo.c netload.c ppp.c
|
|
libgtop_sysdeps_la_LIBADD = @GLIB_LIBS@
|
|
|
|
libgtop_sysdeps_la_LDFLAGS = $(LT_VERSION_INFO)
|
|
|
|
include_HEADERS = glibtop_server.h glibtop_machine.h
|