7fc3acc849
* BUG: Now you can create as many watches on the same path as you want. * NEW: Consequently, the Watch[] static array accessor, that returned the watch associated with a path, had to be removed. * NEW: The flags constants and the Watch.Events property are now associated with the Gambas events, not the internal inotify events. git-svn-id: svn://localhost/gambas/trunk@7766 867c0c6c-44f3-4631-809d-bfa615b0a4ec
13 lines
331 B
Makefile
13 lines
331 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 \
|
|
gb_list.c \
|
|
c_watch.h c_watch.c
|