mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
641b98ce6b
This is the bare minimal effort. This seems not to crash immediately, but it definitely needs some better testing. The backend is not in good shape. It could use some serious work.
32 lines
772 B
Makefile
32 lines
772 B
Makefile
include $(top_srcdir)/glib.mk
|
|
|
|
noinst_LTLIBRARIES += libkqueue.la
|
|
|
|
libkqueue_la_SOURCES = \
|
|
gkqueuefilemonitor.c \
|
|
gkqueuefilemonitor.h \
|
|
kqueue-helper.c \
|
|
kqueue-helper.h \
|
|
kqueue-thread.c \
|
|
kqueue-thread.h \
|
|
kqueue-sub.c \
|
|
kqueue-sub.h \
|
|
kqueue-missing.c \
|
|
kqueue-missing.h \
|
|
kqueue-utils.c \
|
|
kqueue-utils.h \
|
|
kqueue-exclusions.c \
|
|
kqueue-exclusions.h \
|
|
dep-list.c \
|
|
dep-list.h \
|
|
$(NULL)
|
|
|
|
libkqueue_la_CFLAGS = \
|
|
$(GLIB_HIDDEN_VISIBILITY_CFLAGS) \
|
|
-DG_LOG_DOMAIN=\"GLib-GIO\" \
|
|
$(gio_INCLUDES) \
|
|
$(GLIB_DEBUG_FLAGS) \
|
|
-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\" \
|
|
-DGIO_COMPILATION \
|
|
-DG_DISABLE_DEPRECATED
|