Started work on select thread system.
[pazpar2-moved-to-github.git] / src / Makefile.am
1 # $Id: Makefile.am,v 1.10 2007-04-20 10:06:52 adam Exp $
2
3 bin_PROGRAMS = pazpar2
4 check_PROGRAMS = test_config test_relevance test_sel_thread
5 TESTS = $(check_PROGRAMS)
6
7 noinst_LIBRARIES = libpazpar2.a
8
9 MAINTAINERCLEANFILES = Makefile.in cconfig.h
10
11 AM_CFLAGS = $(YAZINC)
12
13 libpazpar2_a_SOURCES = config.c config.h eventl.c eventl.h \
14         http.c http_command.c http_command.h http.h \
15         logic.c pazpar2.h reclists.c reclists.h \
16         relevance.c relevance.h termlists.c termlists.h \
17         util.c util.h zeerex.c zeerex.h database.c database.h \
18         settings.h settings.c sel_thread.c sel_thread.h
19
20 pazpar2_SOURCES = pazpar2.c
21 pazpar2_LDADD = libpazpar2.a $(YAZLIB)
22
23 test_config_SOURCES = test_config.c
24 test_config_LDADD = libpazpar2.a $(YAZLIB)
25
26 test_relevance_SOURCES = test_relevance.c
27 test_relevance_LDADD = libpazpar2.a $(YAZLIB)
28
29 test_sel_thread_SOURCES = test_sel_thread.c
30 test_sel_thread_LDADD = libpazpar2.a $(YAZLIB)
31