started record constructors. still unfnished, but yet only used in test_relevance.c
[pazpar2-moved-to-github.git] / src / Makefile.am
1 # $Id: Makefile.am,v 1.12 2007-04-20 14:37:17 marc 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 \
16         record.h record.c reclists.c reclists.h \
17         relevance.c relevance.h termlists.c termlists.h \
18         util.c util.h zeerex.c zeerex.h database.c database.h \
19         settings.h settings.c sel_thread.c sel_thread.h
20
21 pazpar2_SOURCES = pazpar2.c
22 pazpar2_LDADD = libpazpar2.a $(YAZLIB)
23
24 test_config_SOURCES = test_config.c
25 test_config_LDADD = libpazpar2.a $(YAZLIB)
26
27 test_relevance_SOURCES = test_relevance.c
28 test_relevance_LDADD = libpazpar2.a $(YAZLIB)
29
30 test_sel_thread_SOURCES = test_sel_thread.c
31 test_sel_thread_LDADD = libpazpar2.a $(YAZLIB)
32