cd7cd23403
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.
26 lines
577 B
Makefile
26 lines
577 B
Makefile
SUBDIRS = names
|
|
|
|
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
BUILT_SOURCES = guile.c guile.x
|
|
|
|
lib_LTLIBRARIES = libgtop_guile.la
|
|
|
|
libgtop_guile_la_SOURCES = $(BUILT_SOURCES)
|
|
|
|
libgtop_guile_la_LDFLAGS = $(LT_VERSION_INFO)
|
|
|
|
Makefile: $(BUILT_SOURCES)
|
|
|
|
guile.c: guile.awk $(top_builddir)/config.h $(top_srcdir)/features.def
|
|
$(AWK) -f $(srcdir)/guile.awk < $(top_srcdir)/features.def > gnc-t
|
|
mv gnc-t guile.c
|
|
|
|
guile.x: guile.c
|
|
guile-snarf $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@
|
|
|
|
EXTRA_DIST = guile.awk
|
|
|
|
CLEANFILES = guile.c guile.x
|
|
|