blob: 5030b2ae707ba8c74d2c596ce5bca2ed69f4638c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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)
|