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 30 31 32 33 34 35 36 37 38 39 40 41
|
SUBDIRS = . man3
AM_CPPFLAGS = -D_GNU_SOURCE \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/lib/include \
-I$(top_builddir)/lib/include \
-I$(top_srcdir)/modules/include
AM_CFLAGS = -Wall
noinst_LTLIBRARIES = libivykis-modules.la
if HAVE_INOTIFY
INOTIFY_SRC = iv_inotify.c
INOTIFY_INCLUDE = include/iv_inotify.h
else
INOTIFY_SRC =
INOTIFY_INCLUDE =
endif
libivykis_modules_la_SOURCES = iv_event.c \
iv_event_raw.c \
iv_fd_pump.c \
$(INOTIFY_SRC) \
iv_popen.c \
iv_signal.c \
iv_thread.c \
iv_wait.c \
iv_work.c
include_HEADERS = include/iv_event.h \
include/iv_event_raw.h \
include/iv_fd_pump.h \
$(INOTIFY_INCLUDE) \
include/iv_popen.h \
include/iv_signal.h \
include/iv_thread.h \
include/iv_wait.h \
include/iv_work.h
noinst_HEADERS = spinlock.h
|