mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
7cc610b064
Tue Sep 15 14:57:30 1998 Owen Taylor <otaylor@redhat.com> * Makefile.am glib-config.in l*: Update to libtool-1.2b, change library versioning scheme to drop LT_RELEASE from the -l line, while keeping it in the soname.
62 lines
1.7 KiB
Makefile
62 lines
1.7 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gmodule
|
|
DEFS += -DG_LOG_DOMAIN=g_log_domain_gmodule
|
|
|
|
EXTRA_DIST = \
|
|
gmoduleconf.h.in \
|
|
gmodule-dl.c \
|
|
gmodule-dld.c
|
|
|
|
BUILT_SOURCES = gmoduleconf.h
|
|
gmoduleconf.h: gmoduleconf.h.in
|
|
|
|
include_HEADERS = \
|
|
gmodule.h
|
|
|
|
libglib = $(top_builddir)/libglib.la # -lglib
|
|
|
|
lib_LTLIBRARIES = libgmodule.la libgplugin_a.la libgplugin_b.la
|
|
|
|
libgmodule_la_SOURCES = gmodule.c
|
|
libgmodule_la_LDFLAGS = \
|
|
@G_MODULE_LDFLAGS@ \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-release $(LT_RELEASE)
|
|
|
|
libgmodule_la_LIBADD = @G_MODULE_LIBS@ # $(libglib)
|
|
# we should really depend on $(libglib) for libgmodule.la, but libtool has a
|
|
# problem with this ;(
|
|
|
|
libgplugin_a_la_SOURCES = libgplugin_a.c
|
|
libgplugin_a_la_LDFLAGS = @G_MODULE_LDFLAGS@
|
|
libgplugin_a_la_LIBADD = @G_MODULE_LIBS@ # $(libglib)
|
|
|
|
libgplugin_b_la_SOURCES = libgplugin_b.c
|
|
libgplugin_b_la_LDFLAGS = @G_MODULE_LDFLAGS@
|
|
libgplugin_b_la_LIBADD = @G_MODULE_LIBS@ # $(libglib)
|
|
|
|
noinst_PROGRAMS = testgmodule
|
|
testgmodule_LDFLAGS += @G_MODULE_LDFLAGS@
|
|
testgmodule_LDADD = libgmodule.la $(libglib) @G_MODULE_LIBS@
|
|
|
|
.PHONY: files release
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|
|
|
|
install-libLTLIBRARIES: libgmodule.la
|
|
@$(NORMAL_INSTALL)
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
|
@list='libgmodule.la'; for p in $$list; do \
|
|
if test -f $$p; then \
|
|
echo "$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p"; \
|
|
$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p; \
|
|
else :; fi; \
|
|
done
|
|
|
|
release:
|
|
$(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"`
|