d2c41502a4
This commit pushes --disable-glib to the extreme of embedding the par of glib cogl depends on in tree to be able to generate a DSO that does not depend on an external glib. To do so, it: - keeps a lot of glib's configure.ac in as-glibconfig.m4 - pulls the code cogl depends on and the necessary dependencies Reviewed-by: Robert Bragg <robert@linux.intel.com>
77 lines
1.1 KiB
Makefile
77 lines
1.1 KiB
Makefile
|
|
noinst_LTLIBRARIES = libglib.la
|
|
|
|
libglib_la_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/deps \
|
|
-Wall \
|
|
$(NULL)
|
|
|
|
libglib_la_SOURCES = \
|
|
galloca.h \
|
|
garray.c \
|
|
garray.h \
|
|
gatomic.c \
|
|
gatomic.h \
|
|
gbacktrace.h \
|
|
gbitlock.c \
|
|
gbitlock.h \
|
|
gconvert.c \
|
|
gconvert.h \
|
|
gdatasetprivate.h \
|
|
gdataset.c \
|
|
gdataset.h \
|
|
gdebug.h \
|
|
gerror.c \
|
|
gerror.h \
|
|
gfileutils.c \
|
|
gfileutils.h \
|
|
ghash.c \
|
|
ghash.h \
|
|
ghook.c \
|
|
ghook.h \
|
|
gi18n-lib.h \
|
|
glibconfig.h \
|
|
glibintl.h \
|
|
glib.h \
|
|
glib-object.h \
|
|
glib_trace.h \
|
|
glist.c \
|
|
glist.h \
|
|
gmacros.h \
|
|
gmain.c \
|
|
gmain.h \
|
|
gmem.c \
|
|
gmem.h \
|
|
gmessages.c \
|
|
gmessages.h \
|
|
gprintf.c \
|
|
gprintf.h \
|
|
gprintfint.h \
|
|
gqsort.c \
|
|
gqsort.h \
|
|
gquark.h \
|
|
gqueue.c \
|
|
gqueue.h \
|
|
gslice.c \
|
|
gslice.h \
|
|
gslist.c \
|
|
gslist.h \
|
|
gstdio.c \
|
|
gstdio.h \
|
|
gstrfuncs.c \
|
|
gstrfuncs.h \
|
|
gstring.c \
|
|
gstring.h \
|
|
gtestutils.c \
|
|
gtestutils.h \
|
|
gthread.c \
|
|
gthread.h \
|
|
gtypes.h \
|
|
gunicode.h \
|
|
gutils.c \
|
|
gutils.h \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = README
|