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.
21 lines
488 B
Makefile
21 lines
488 B
Makefile
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
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 \
|
|
sysdeps.c
|
|
|
|
libgtop_la_LDFLAGS = $(LT_VERSION_INFO)
|
|
|
|
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
|
|
|