File: Makefile.am

package info (click to toggle)
dump 0.4b52-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,076 kB
  • sloc: ansic: 15,394; sh: 5,006; cpp: 3,268; makefile: 183
file content (33 lines) | stat: -rw-r--r-- 814 bytes parent folder | download | duplicates (2)
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
AM_CPPFLAGS = -I$(top_srcdir)/dump -I$(top_srcdir)/compat/include

noinst_LTLIBRARIES = libcommon.la

libcommon_la_SOURCES = \
	dumprmt.c \
	indexer.h \
	legacy_indexer.c \
	slave.h \
	sqlite_indexer.c \
	transformation.h \
	transformation_null.c \
	transformation_lzo.c \
	transformation_zlib.c \
	transformation_bzlib.c
libcommon_la_LIBADD = \
	$(UUID_LIBS) \
	$(ZLIB_LIBS) \
	$(BZLIB) \
	$(LZOLIB) \
	$(SSL_LIBS) \
	$(SQLITE3)

check_PROGRAMS = indexer_test

indexer_test_SOURCES = indexer_test.c
indexer_test_LDADD = libcommon.la ../compat/lib/libcompat.la

# Disabled due to missing transform_test.c -- it was accidentally not added.
# We can re-add when someone re-implements the test code :(.
#check_PROGRAMS += transform_test
#transform_test_SOURCES = transform_test.c
#transform_test_LDADD = libcommon.la