mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
51a917bc16
Since the initial addition of BeOS support in 1999, there has only been one update to it (in 2005, and it wasn't even very big). GLib is known to not currently build on Haiku (or presumably actual BeOS) without additional patching, and the fact that there isn't a single G_OS_BEOS check in gio/ is suspicious. Additionally, other than the GModule implementation, all of the existing G_OS_BEOS checks are either (a) "G_OS_UNIX || G_OS_BEOS", or (b) random minor POSIXy tweaks (include this header file rather than that one, etc), suggesting that if we were going to support Haiku, it would probably be simpler to treat it as a special kind of G_OS_UNIX (as we do with Mac OS X) rather than as its own completely different thing. So, kill G_OS_BEOS. https://bugzilla.gnome.org/show_bug.cgi?id=710519
111 lines
2.8 KiB
Makefile
111 lines
2.8 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
include $(top_srcdir)/glib.mk
|
|
|
|
AM_CPPFLAGS = \
|
|
$(glib_INCLUDES) \
|
|
-DG_LOG_DOMAIN=\"GModule\" \
|
|
@GLIB_DEBUG_FLAGS@ \
|
|
-DG_DISABLE_DEPRECATED
|
|
|
|
AM_CFLAGS = $(GLIB_WARN_CFLAGS)
|
|
|
|
EXTRA_DIST += \
|
|
makefile.msc.in \
|
|
gmoduleconf.h.in \
|
|
gmodule-dl.c \
|
|
gmodule-dld.c \
|
|
gmodule-dyld.c \
|
|
gmodule-win32.c \
|
|
gmodule-ar.c \
|
|
gmoduleconf.h.win32 \
|
|
gmodule.rc.in
|
|
|
|
BUILT_EXTRA_DIST += \
|
|
makefile.msc \
|
|
gmodule.rc
|
|
|
|
BUILT_SOURCES += gmoduleconf.h
|
|
gmoduleconf.h: gmoduleconf.h.in
|
|
|
|
glibincludedir=$(includedir)/glib-2.0
|
|
glibinclude_HEADERS = \
|
|
gmodule.h
|
|
|
|
libglib = $(top_builddir)/glib/libglib-2.0.la
|
|
|
|
top_builddir_full=`cd \$(top_builddir); pwd`
|
|
|
|
lib_LTLIBRARIES = libgmodule-2.0.la
|
|
|
|
if OS_WIN32_AND_DLL_COMPILATION
|
|
if MS_LIB_AVAILABLE
|
|
noinst_DATA += gmodule-2.0.lib
|
|
|
|
install_ms_lib_cmd = $(INSTALL) gmodule-2.0.lib $(DESTDIR)$(libdir)
|
|
uninstall_ms_lib_cmd = -rm $(DESTDIR)$(libdir)/gmodule-2.0.lib
|
|
endif
|
|
endif
|
|
|
|
install-ms-lib:
|
|
$(install_ms_lib_cmd)
|
|
|
|
uninstall-ms-lib:
|
|
$(uninstall_ms_lib_cmd)
|
|
|
|
if PLATFORM_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
if OS_WIN32_AND_DLL_COMPILATION
|
|
gmodule_win32_res = gmodule-win32-res.o
|
|
gmodule_win32_res_ldflag = -Wl,$(gmodule_win32_res)
|
|
endif
|
|
|
|
libgmodule_2_0_la_CFLAGS = $(AM_CFLAGS) $(GLIB_HIDDEN_VISIBILITY_CFLAGS)
|
|
libgmodule_2_0_la_SOURCES = gmodule.c
|
|
libgmodule_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \
|
|
$(gmodule_win32_res_ldflag) \
|
|
$(G_MODULE_LDFLAGS) \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-export-dynamic $(no_undefined)
|
|
|
|
libgmodule_2_0_la_LIBADD = $(G_MODULE_LIBS_EXTRA) $(G_MODULE_LIBS) $(libglib)
|
|
|
|
libgmodule_2_0_la_DEPENDENCIES = $(gmodule_win32_res) $(gmodule_def)
|
|
|
|
gmodule-win32-res.o: gmodule.rc
|
|
$(AM_V_GEN) $(WINDRES) gmodule.rc $@
|
|
|
|
gmodule-2.0.lib: libgmodule-2.0.la gmodule.def
|
|
lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgmodule-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:$(builddir)/gmodule.def -out:$@
|
|
|
|
.PHONY: files release
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|
|
|
|
release:
|
|
$(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"`
|
|
|
|
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
|
|
|
|
uninstall-local: uninstall-ms-lib
|
|
|
|
if HAVE_GLIB_RUNTIME_LIBDIR
|
|
install-data-hook:
|
|
mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
|
|
mv $(DESTDIR)$(libdir)/libgmodule-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
|
|
mv $(DESTDIR)$(libdir)/libgmodule-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR)
|
|
rm -f $(DESTDIR)$(libdir)/libgmodule-2.0.so
|
|
ln -s $(GLIB_RUNTIME_LIBDIR)/libgmodule-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgmodule-2.0.so
|
|
endif
|