started facturizing 7 bit ascii normalizing functions out of logic.c into normalizati...
[pazpar2-moved-to-github.git] / src / Makefile.am
1 # $Id: Makefile.am,v 1.17 2007-04-26 21:33:32 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         normalize7bit.h normalize7bit.c \
27         util.c util.h zeerex.c zeerex.h database.c database.h \
28         settings.h settings.c sel_thread.c sel_thread.h getaddrinfo.c \
29         client.c client.h connection.c connection.h host.h parameters.h
30
31 pazpar2_SOURCES = pazpar2.c
32 pazpar2_LDADD = libpazpar2.a $(YAZLIB)
33
34 test_config_SOURCES = test_config.c
35 test_config_LDADD = libpazpar2.a $(YAZLIB)
36
37 test_record_SOURCES = test_record.c
38 test_record_LDADD = libpazpar2.a $(YAZLIB)
39
40 test_reclists_SOURCES = test_reclists.c
41 test_reclists_LDADD = libpazpar2.a $(YAZLIB)
42
43 test_relevance_SOURCES = test_relevance.c
44 test_relevance_LDADD = libpazpar2.a $(YAZLIB)
45
46 test_sel_thread_SOURCES = test_sel_thread.c
47 test_sel_thread_LDADD = libpazpar2.a $(YAZLIB)
48