mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 23:16:14 +01:00
7cd50026f1
2000-03-24 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * Makefile.am, gthread/Makefile.am, gmodule/Makefile.am, tests/Makefile.am: Added various win32 related *.in files to EXTRA_DIST to let 'make distcheck' procude all the corresponding files, which it silently fails to do currently.
31 lines
823 B
Makefile
31 lines
823 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gthread \
|
|
-DG_LOG_DOMAIN=\"GThread\" @GTHREAD_COMPILE_IMPL_DEFINES@
|
|
|
|
EXTRA_DIST = \
|
|
gthread-posix.c \
|
|
gthread-solaris.c \
|
|
gthread-none.c \
|
|
gthread.def \
|
|
gthread.rc \
|
|
gthread.rc.in
|
|
|
|
libglib = $(top_builddir)/libglib.la # -lglib
|
|
|
|
top_builddir_full=`cd \$(top_builddir); pwd`
|
|
|
|
lib_LTLIBRARIES = libgthread.la
|
|
|
|
libgthread_la_SOURCES = gthread-impl.c
|
|
libgthread_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-release $(LT_RELEASE) \
|
|
-export-dynamic
|
|
|
|
libgthread_la_LIBADD = @G_THREAD_LIBS_EXTRA@ @G_THREAD_LIBS@
|
|
|
|
gthread.rc: $(top_builddir)/config.status $(top_srcdir)/gthread/gthread.rc.in
|
|
cd $(top_builddir) && CONFIG_FILES=gthread/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|