File: Makefile.am

package info (click to toggle)
zeitgeist 1.0.4-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,440 kB
  • sloc: python: 8,116; cpp: 3,006; ansic: 1,298; sql: 1,192; makefile: 951; javascript: 753; sh: 156
file content (26 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (3)
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