mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 05:20:08 +01:00
* configure.in Makefile.am gfilemonitor/* - Add a private copy of the GIO GFileMonitor code, with a custom GFile implementation, so that the same change monitoring code can be used on systems without glib-2.14 (like Fedora 8) * system-settings/plugins/keyfile/Makefile.am system-settings/plugins/keyfile/plugin.c system-settings/plugins/ifcfg-suse/Makefile.am system-settings/plugins/ifcfg-suse/plugin.c - Use private gfilemonitor code if GIO is not present git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3654 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
29 lines
618 B
Makefile
29 lines
618 B
Makefile
INCLUDES = -I${top_srcdir}/include -I${top_builddir}/marshallers
|
|
|
|
noinst_LTLIBRARIES = libgfilemonitor.la
|
|
|
|
libgfilemonitor_la_SOURCES = \
|
|
gfile.c \
|
|
gfile.h \
|
|
gfilemonitor.c \
|
|
gfilemonitor.h \
|
|
glocalfilemonitor.c \
|
|
glocalfilemonitor.h \
|
|
glocaldirectorymonitor.c \
|
|
glocaldirectorymonitor.h \
|
|
inotify-diag.c \
|
|
inotify-diag.h \
|
|
inotify-helper.c \
|
|
inotify-helper.h \
|
|
inotify-kernel.c \
|
|
inotify-kernel.h \
|
|
inotify-missing.c \
|
|
inotify-missing.h \
|
|
inotify-path.c \
|
|
inotify-path.h \
|
|
inotify-sub.c \
|
|
inotify-sub.h
|
|
|
|
libgfilemonitor_la_CPPFLAGS = $(GTHREAD_CFLAGS)
|
|
|
|
libgfilemonitor_la_LIBADD = $(GTHREAD_LIBS)
|