Happy new year
[pazpar2-moved-to-github.git] / src / Makefile.am
1 # This file is part of Pazpar2.
2
3 sbin_PROGRAMS = pazpar2
4 bin_PROGRAMS = pazpar2_play
5
6 check_PROGRAMS = \
7       test_sel_thread \
8       test_normalize
9
10 TESTS = $(check_PROGRAMS)
11
12 noinst_LIBRARIES = libpazpar2.a
13
14 CONFIG_CLEAN_FILES=*.log
15
16 AM_CFLAGS = $(YAZINC)
17
18 libpazpar2_a_SOURCES = \
19         charsets.c charsets.h \
20         client.c client.h \
21         connection.c connection.h \
22         database.c database.h \
23         eventl.c eventl.h \
24         facet_limit.c facet_limit.h \
25         http.c http.h http_command.c \
26         incref.c incref.h \
27         jenkins_hash.c jenkins_hash.h \
28         marchash.c marchash.h \
29         marcmap.c marcmap.h \
30         normalize7bit.c normalize7bit.h \
31         normalize_cache.c normalize_cache.h \
32         normalize_record.c normalize_record.h \
33         parameters.h \
34         pazpar2_config.c pazpar2_config.h \
35         ppmutex.c ppmutex.h \
36         reclists.c reclists.h \
37         record.c record.h \
38         relevance.c relevance.h \
39         sel_thread.c sel_thread.h \
40         service_xslt.c service_xslt.h \
41         session.c session.h \
42         settings.c settings.h \
43         termlists.c termlists.h
44
45 pazpar2_SOURCES = pazpar2.c
46 pazpar2_LDADD = libpazpar2.a $(YAZLIB)
47
48 pazpar2_play_SOURCES = pazpar2_play.c
49 pazpar2_play_LDADD = $(YAZLIB)
50
51 test_sel_thread_SOURCES = test_sel_thread.c
52 test_sel_thread_LDADD = libpazpar2.a $(YAZLIB)
53
54 test_normalize_SOURCES = test_normalize.c
55 test_normalize_LDADD = libpazpar2.a $(YAZLIB)
56