mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-10 12:55:48 +01:00
2007-11-27 Alexander Larsson <alexl@redhat.com> * configure.in: Allow configuration of gio-module-dir * gio-2.0.pc.in: Export giomodules location as giomodule variable 2007-11-27 Alexander Larsson <alexl@redhat.com> * Makefile.am: * fam/Makefile.am: * inotify/Makefile.am: Use the user-specified giomoduledir svn path=/trunk/; revision=5951
35 lines
718 B
Makefile
35 lines
718 B
Makefile
NULL =
|
|
|
|
noinst_LTLIBRARIES = libinotify.la
|
|
|
|
libinotify_la_SOURCES = \
|
|
inotify-kernel.c \
|
|
inotify-sub.c \
|
|
inotify-path.c \
|
|
inotify-missing.c \
|
|
inotify-helper.c \
|
|
inotify-diag.c \
|
|
inotify-diag.h \
|
|
inotify-kernel.h \
|
|
inotify-missing.h \
|
|
inotify-path.h \
|
|
inotify-sub.h \
|
|
inotify-helper.h \
|
|
local_inotify.h \
|
|
local_inotify_syscalls.h \
|
|
ginotifyfilemonitor.c \
|
|
ginotifyfilemonitor.h \
|
|
ginotifydirectorymonitor.c \
|
|
ginotifydirectorymonitor.h \
|
|
$(NULL)
|
|
|
|
libinotify_la_CFLAGS = \
|
|
-DG_LOG_DOMAIN=\"GLib-GIO\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/glib \
|
|
-I$(top_srcdir)/gmodule \
|
|
-I$(top_srcdir)/gio \
|
|
-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\" \
|
|
-DG_DISABLE_DEPRECATED
|
|
|