mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-27 07:56:14 +01:00
367d77233b
2008-03-12 Tor Lillqvist <tml@novell.com> * configure.in: Expand gio/win32/Makefile. 2008-03-12 Tor Lillqvist <tml@novell.com> Bug 517419 - gio win32 directory monitor Implementation by Vlad Grecescu. * win32/Makefile.am * win32/gwin32directorymonitor.h * win32/gwin32directorymonitor.c: New files. * giomodule.c: Set up the GWin32DirectoryMonitor plumbing. * Makefile.am: Add the win32 subdirectory. svn path=/trunk/; revision=6698
22 lines
448 B
Makefile
22 lines
448 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
NULL =
|
|
|
|
noinst_LTLIBRARIES = libgiowin32.la
|
|
|
|
libgiowin32_la_SOURCES = \
|
|
gwin32directorymonitor.c \
|
|
gwin32directorymonitor.h \
|
|
$(NULL)
|
|
|
|
libgiowin32_la_CFLAGS = \
|
|
-DG_LOG_DOMAIN=\"GLib-GIO\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/glib \
|
|
-I$(top_srcdir)/gmodule \
|
|
-I$(top_srcdir)/gio \
|
|
$(GLIB_DEBUG_FLAGS) \
|
|
-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\" \
|
|
-DGIO_COMPILATION \
|
|
-DG_DISABLE_DEPRECATED
|