mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-31 18:06:14 +01:00
ee5aacbc61
2007-12-14 Yevgen Muntyan <muntyan@tamu.edu> * gio/Makefile.am: * gio/inotify/Makefile.am: Fixed build when srcdir != builddir, made mkenums and friends use temporary files to avoid leaving empty generated files on failure (#503470). svn path=/trunk/; revision=6126
39 lines
804 B
Makefile
39 lines
804 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
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 \
|
|
-I$(top_builddir)/gio \
|
|
-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\" \
|
|
-DGIO_COMPILATION \
|
|
-DG_DISABLE_DEPRECATED
|
|
|