1998-07-29 Martin Baulig <martin@home-of-linux.org> * guile/ChangeLog: New file. * features.def: New format - now includes type of return value and parameters. * lib/lib.awk: Changed to use new `features.def'. * sysdeps/guile/guile.awk: Dito; * sysdeps/guile/names/guile-names.awk: Dito. * libgtopConf.sh.in: Added `LIBGTOP_NAMES_LIBS', `LIBGTOP_NAMES_INCS', `LIBGTOP_GUILE_NAMES_LIBS', `LIBGTOP_GUILE_NAMES_INCS', `LIBGTOP_MAJOR_VERSION', `LIBGTOP_MINOR_VERSION' `LIBGTOP_VERSION', `libgtop_sysdeps_dir'. * acinclude.m4 (AC_LC_SYSDEPS): Removed since this has been replaced with `GNOME_LIBGTOP_SYSDEPS' long ago. * LIBGTOP-VERSION: New file. * */Makefile.am (INCLUDES): Removed; now defined in `configure.in'. * sysdeps/names/mountlist.c: New file. * lib/{init, open}.c (GTOP_SERVER): Renamed to `LIBGTOP_SERVER'. * configure.in (INCLUDES): Added definition. (libgtop_want_names): Always true; `libgtop_names.la' is now always created since some other programs rely upon it - but have to use `LIBGTOP_NAMES_LIBS' and `LIBGTOP_NAMES_INCS' to use it in your application. (libgtop_want_guile_names): Always true; but you have to use `LIBGTOP_GUILE_NAMES_LIBS' and `LIBGTOP_GUILE_NAMES_INCS' to use it in your application. (LIBGTOP_LIBS): Removed `-lgtop_names' and `-lgtop_guile_names'. (LIBGTOP_NAMES_LIBS): New variable. Use it to link your application with the names interface. (LIBGTOP_NAMES_INCS): New variable. Also #defines `GLIBTOP_NAMES' which is now required if your application wants to use the names interface. (LIBGTOP_GUILE_NAMES_LIBS): New variable. Use it to link your application with the guile names interface. (LIBGTOP_GUILE_NAMES_INCS): New variable. Also #defines `GLIBTOP_NAMES' and `GLIBTOP_GUILE_NAMES' which are now required if your application wants to use the guile names interface.
60 lines
2.0 KiB
Makefile
60 lines
2.0 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
CFLAGS = -Wall -W @CFLAGS@ -O0
|
|
|
|
DEFS = @DEFS@
|
|
|
|
bin_PROGRAMS = first first_static second second_static \
|
|
mountlist mountlist_static \
|
|
@guile_examples@
|
|
|
|
EXTRA_PROGRAMS = third third_static
|
|
|
|
first_SOURCES = first.c
|
|
first_LDADD = $(top_builddir)/lib/libgtop.la \
|
|
$(top_builddir)/sysdeps/common/libgtop_common.la \
|
|
$(top_builddir)/sysdeps/@sysdeps_dir@/libgtop_sysdeps.la \
|
|
@INTLLIBS@ @LIBSUPPORT@ @libs_xauth@
|
|
|
|
first_static_SOURCES = $(first_SOURCES)
|
|
first_static_LDADD = $(first_LDADD)
|
|
first_static_LDFLAGS = -static
|
|
|
|
second_SOURCES = second.c
|
|
second_LDADD = $(top_builddir)/lib/libgtop.la \
|
|
$(top_builddir)/sysdeps/common/libgtop_common.la \
|
|
$(top_builddir)/sysdeps/@sysdeps_dir@/libgtop_sysdeps.la \
|
|
@INTLLIBS@ @LIBSUPPORT@ @libs_xauth@
|
|
|
|
second_static_SOURCES = $(second_SOURCES)
|
|
second_static_LDADD = $(second_LDADD)
|
|
second_static_LDFLAGS = -static
|
|
|
|
third_guile_names_LIBS = $(top_builddir)/sysdeps/guile/names/libgtop_guile_names.la
|
|
third_names_LIBS = $(top_builddir)/sysdeps/names/libgtop_names.la
|
|
|
|
third_SOURCES = third.c
|
|
third_LDADD = $(top_builddir)/sysdeps/guile/libgtop_guile.la \
|
|
$(third_guile_names_LIBS) $(third_names_LIBS) \
|
|
$(top_builddir)/lib/libgtop.la \
|
|
$(top_builddir)/sysdeps/common/libgtop_common.la \
|
|
$(top_builddir)/sysdeps/@sysdeps_dir@/libgtop_sysdeps.la \
|
|
@GUILE_LIBS@ @INTLLIBS@ @LIBSUPPORT@ @libs_xauth@
|
|
|
|
third_static_SOURCES = $(third_SOURCES)
|
|
third_static_LDADD = $(third_LDADD)
|
|
third_static_LDFLAGS = -static
|
|
|
|
mountlist_SOURCES = mountlist.c
|
|
mountlist_LDADD = $(top_builddir)/lib/libgtop.la \
|
|
$(top_builddir)/sysdeps/common/libgtop_common.la \
|
|
$(top_builddir)/sysdeps/@sysdeps_dir@/libgtop_sysdeps.la \
|
|
@INTLLIBS@ @LIBSUPPORT@ @libs_xauth@
|
|
|
|
mountlist_static_SOURCES= $(mountlist_SOURCES)
|
|
mountlist_static_LDADD = $(mountlist_LDADD)
|
|
mountlist_static_LDFLAGS= -static
|
|
|