forgotten to commit Makefile.am, which contains instructions for new test_reclists.c
[pazpar2-moved-to-github.git] / src / Makefile.am
1 # $Id: Makefile.am,v 1.16 2007-04-25 13:14:46 marc Exp $
2
3 bin_PROGRAMS = pazpar2
4 check_PROGRAMS = test_config \
5       test_record \
6       test_reclists \
7       test_relevance \
8       test_sel_thread
9
10
11 TESTS = $(check_PROGRAMS)
12
13 noinst_LIBRARIES = libpazpar2.a
14
15 MAINTAINERCLEANFILES = Makefile.in cconfig.h 
16
17 CONFIG_CLEAN_FILES=*.log
18
19 AM_CFLAGS = $(YAZINC)
20
21 libpazpar2_a_SOURCES = config.c config.h eventl.c eventl.h \
22         http.c http_command.c http_command.h http.h \
23         logic.c pazpar2.h \
24         record.h record.c reclists.c reclists.h \
25         relevance.c relevance.h termlists.c termlists.h \
26         util.c util.h zeerex.c zeerex.h database.c database.h \
27         settings.h settings.c sel_thread.c sel_thread.h getaddrinfo.c \
28         client.c client.h connection.c connection.h host.h parameters.h
29
30 pazpar2_SOURCES = pazpar2.c
31 pazpar2_LDADD = libpazpar2.a $(YAZLIB)
32
33 test_config_SOURCES = test_config.c
34 test_config_LDADD = libpazpar2.a $(YAZLIB)
35
36 test_record_SOURCES = test_record.c
37 test_record_LDADD = libpazpar2.a $(YAZLIB)
38
39 test_reclists_SOURCES = test_reclists.c
40 test_reclists_LDADD = libpazpar2.a $(YAZLIB)
41
42 test_relevance_SOURCES = test_relevance.c
43 test_relevance_LDADD = libpazpar2.a $(YAZLIB)
44
45 test_sel_thread_SOURCES = test_sel_thread.c
46 test_sel_thread_LDADD = libpazpar2.a $(YAZLIB)
47