mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-10 03:04:05 +02:00
It hasn’t been seriously maintained for the best part of 10 years and is very outdated. The recommended way to build GLib on Windows is now Visual Studio: https://wiki.gnome.org/Projects/GTK%2B/Win32/MSVCCompilationOfGTKStack#GLib Signed-off-by: Philip Withnall <withnall@endlessm.com> https://bugzilla.gnome.org/show_bug.cgi?id=722047
27 lines
526 B
Makefile
27 lines
526 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
include $(top_srcdir)/glib.mk
|
|
|
|
AM_CPPFLAGS = \
|
|
$(glib_INCLUDES) \
|
|
-DG_LOG_DOMAIN=\"GLib\" \
|
|
$(GLIB_DEBUG_FLAGS) \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DGLIB_COMPILATION
|
|
|
|
noinst_LTLIBRARIES += libgnulib.la
|
|
|
|
libgnulib_la_CFLAGS = $(GLIB_HIDDEN_VISIBILITY_CFLAGS)
|
|
libgnulib_la_SOURCES = \
|
|
asnprintf.c \
|
|
printf-args.c \
|
|
printf-args.h \
|
|
printf-parse.c \
|
|
printf-parse.h \
|
|
vasnprintf.c \
|
|
vasnprintf.h \
|
|
printf.c \
|
|
printf.h \
|
|
verify.h \
|
|
xsize.h \
|
|
g-gnulib.h
|