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
|
NULL =
AM_CFLAGS = \
-Wall \
-g \
$(GIO_UNIX_CFLAGS) \
$(ZEITGEIST_CFLAGS) \
-I $(top_builddir)/libzeitgeist \
-include $(top_builddir)/libzeitgeist/zeitgeist-datamodel.h \
-include $(top_builddir)/libzeitgeist/zeitgeist.h \
$(NULL)
AM_LDFLAGS = \
$(ZEITGEIST_LIBS) \
$(top_builddir)/libzeitgeist/libzeitgeist-2.0.la \
$(NULL)
noinst_PROGRAMS = \
find-events \
monitor-events \
search-events \
$(NULL)
find_events_SOURCES = find-events.c
monitor_events_SOURCES = monitor-events.c
search_events_SOURCES = search-events.c
|