mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
2f1f82f60f
Thu Dec 17 03:38:57 1998 Tim Janik <timj@gtk.org> * Makefile.am: -DG_LOG_DOMAIN="GThread", we don't need an extern variable for that (noticed by Joel Becker <jlbec@ocala.cs.miami.edu>)
24 lines
577 B
Makefile
24 lines
577 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gthread -DG_LOG_DOMAIN=\"GThread\"
|
|
|
|
EXTRA_DIST = \
|
|
gthread-posix.c \
|
|
gthread-solaris.c \
|
|
gthread-nspr.c \
|
|
gthread-none.c
|
|
|
|
libglib = $(top_builddir)/libglib.la # -lglib
|
|
|
|
lib_LTLIBRARIES = libgthread.la
|
|
|
|
libgthread_la_SOURCES = gthread.c
|
|
libgthread_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-release $(LT_RELEASE)
|
|
|
|
libgthread_la_LIBADD = @G_THREAD_LIBS@
|
|
|
|
noinst_PROGRAMS = testgthread
|
|
testgthread_LDADD = ../libglib.la libgthread.la
|