Get rid of useless tests.
[pazpar2-moved-to-github.git] / src / Makefile.am
1 # This file is part of Pazpar2.
2
3 sbin_PROGRAMS = pazpar2
4
5 check_PROGRAMS = \
6       test_sel_thread \
7       test_normalize
8
9 TESTS = $(check_PROGRAMS)
10
11 noinst_LIBRARIES = libpazpar2.a
12
13 MAINTAINERCLEANFILES = Makefile.in cconfig.h 
14
15 CONFIG_CLEAN_FILES=*.log
16
17 AM_CFLAGS = $(YAZINC)
18         
19 libpazpar2_a_SOURCES = pazpar2_config.c pazpar2_config.h eventl.c eventl.h \
20         http.c http_command.c http.h \
21         logic.c pazpar2.h \
22         record.h record.c reclists.c reclists.h \
23         relevance.c relevance.h termlists.c termlists.h \
24         normalize7bit.h normalize7bit.c \
25         util.c util.h zeerex.c zeerex.h database.c database.h \
26         settings.h settings.c sel_thread.c sel_thread.h getaddrinfo.c \
27         charsets.c charsets.h \
28         client.c client.h connection.c connection.h host.h parameters.h \
29         dirent.c direntz.h
30
31 pazpar2_SOURCES = pazpar2.c
32 pazpar2_LDADD = libpazpar2.a $(YAZLIB)
33
34 test_sel_thread_SOURCES = test_sel_thread.c
35 test_sel_thread_LDADD = libpazpar2.a $(YAZLIB)
36
37 test_normalize_SOURCES = test_normalize.c
38 test_normalize_LDADD = libpazpar2.a $(YAZLIB)
39