da8305456c
* NEW: Rename the PathWatch class to Watch. * NEW: Generalise the events raised by the class for future portability. * NEW: Add static properties Name, IsDir, Unmount and Cookie and remove the corresponding event handler arguments. * NEW: Do not automatically reference a Watch anymore to keep it sane. * BUG: Automatic detection of watch events works now (#6115). * BUG: Invalidate Watch objects when the kernel tells us to. * BUG: Don't enter an infinite loop if some event bits are not recognised. * OPT: Use hash tables to improve lookups. git-svn-id: svn://localhost/gambas/trunk@6147 867c0c6c-44f3-4631-809d-bfa615b0a4ec
12 lines
318 B
Makefile
12 lines
318 B
Makefile
COMPONENT = gb.inotify
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.inotify.la
|
|
|
|
gb_inotify_la_LIBADD = @INOTIFY_LIB@
|
|
gb_inotify_la_LDFLAGS = -module @LD_FLAGS@ @INOTIFY_LDFLAGS@
|
|
gb_inotify_la_CPPFLAGS = @INOTIFY_INC@ -I$(top_srcdir)/share
|
|
|
|
gb_inotify_la_SOURCES = \
|
|
main.h main.c \
|
|
c_watch.h c_watch.c
|