mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
fd64571b80
2004-03-06 Tor Lillqvist <tml@iki.fi> * README.win32: Update. * configure.in * Makefile.am * */Makefile.am: Drop the hand-written makefile.mingw(.in) files. They haven't been maintained in a long time. As several people have managed to build GLib for Win32 using the autoconfiscation mechanism, there is no real reason to even try to maintain the hand-written mingw makefiles.
84 lines
2.1 KiB
Makefile
84 lines
2.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/glib -I$(top_srcdir)/gthread \
|
|
-DG_LOG_DOMAIN=\"GThread\" @GTHREAD_COMPILE_IMPL_DEFINES@ \
|
|
@GLIB_DEBUG_FLAGS@ -DG_DISABLE_DEPRECATED
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc.in \
|
|
gthread-posix.c \
|
|
gthread-solaris.c \
|
|
gthread-win32.c \
|
|
gthread-none.c \
|
|
gthread.def \
|
|
gthread.rc.in
|
|
|
|
BUILT_EXTRA_DIST = \
|
|
makefile.msc \
|
|
gthread.rc
|
|
|
|
libglib = $(top_builddir)/glib/libglib-2.0.la
|
|
|
|
top_builddir_full=`cd \$(top_builddir); pwd`
|
|
|
|
lib_LTLIBRARIES = libgthread-2.0.la
|
|
|
|
if MS_LIB_AVAILABLE
|
|
noinst_DATA = gthread-2.0.lib
|
|
|
|
install-ms-lib:
|
|
$(INSTALL) gthread-2.0.lib $(DESTDIR)$(libdir)
|
|
|
|
uninstall-ms-lib:
|
|
-rm $(DESTDIR)$(libdir)/gthread-2.0.lib
|
|
else
|
|
install-ms-lib:
|
|
uninstall-ms-lib:
|
|
endif
|
|
|
|
if PLATFORM_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
if OS_WIN32
|
|
export_symbols = -export-symbols $(srcdir)/gthread.def
|
|
|
|
install-libtool-import-lib:
|
|
$(INSTALL) .libs/libgthread-2.0.dll.a $(DESTDIR)$(libdir)
|
|
$(INSTALL) $(srcdir)/gthread.def $(DESTDIR)$(libdir)/gthread-2.0.def
|
|
|
|
uninstall-libtool-import-lib:
|
|
-rm $(DESTDIR)$(libdir)/libgthread-2.0.dll.a $(DESTDIR)$(libdir)/gthread-2.0.def
|
|
else
|
|
install-libtool-import-lib:
|
|
uninstall-libtool-import-lib:
|
|
endif
|
|
|
|
libgthread_2_0_la_SOURCES = gthread-impl.c
|
|
libgthread_2_0_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-export-dynamic $(no_undefined) $(export_symbols)
|
|
|
|
libgthread_2_0_la_LIBADD = $(G_THREAD_WIN32_RESOURCE) $(G_THREAD_LIBS_EXTRA) $(G_THREAD_LIBS_FOR_GTHREAD) $(libglib)
|
|
|
|
libgthread_2_0_la_DEPENDENCIES = $(G_THREAD_WIN32_RESOURCE) $(GTHREAD_DEF)
|
|
|
|
if OS_WIN32
|
|
$(G_THREAD_WIN32_RESOURCE): gthread.rc
|
|
$(top_srcdir)/build/win32/lt-compile-resource gthread.rc $@
|
|
endif
|
|
|
|
gthread-2.0.lib: libgthread-2.0.la gthread.def
|
|
lib -name:libgthread-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gthread.def -out:$@
|
|
|
|
dist-hook: $(BUILT_EXTRA_DIST)
|
|
files='$(BUILT_EXTRA_DIST)'; \
|
|
for f in $$files; do \
|
|
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
|
cp $$d/$$f $(distdir) || exit 1; done
|
|
|
|
install-data-local: install-ms-lib install-libtool-import-lib
|
|
|
|
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
|
|
|