summaryrefslogtreecommitdiffstats
path: root/src/lib-program-client/Makefile.am
blob: 4198606d67d5b77ef571c31e45ffa108ea5d301a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
noinst_LTLIBRARIES = libprogram_client.la

AM_CPPFLAGS = \
	-I$(top_srcdir)/src/lib \
	-I$(top_srcdir)/src/lib-test \
	-I$(top_srcdir)/src/lib-dns \
	-I$(top_srcdir)/src/lib-mail

libprogram_client_la_SOURCES = \
	program-client.c \
	program-client-local.c \
	program-client-remote.c

headers = \
	program-client.h

noinst_HEADERS = \
	program-client-private.h

pkginc_libdir=$(pkgincludedir)
pkginc_lib_HEADERS = $(headers)

test_programs = \
	test-program-client-local \
	test-program-client-unix \
	test-program-client-net

noinst_PROGRAMS = $(test_programs)

test_libs = \
	libprogram_client.la \
	../lib-dns/libdns.la  \
	../lib-test/libtest.la \
	../lib-mail/libmail.la \
	../lib-charset/libcharset.la \
	../lib/liblib.la \
	$(MODULE_LIBS)

test_program_client_local_SOURCE = test-program-client-local.c
test_program_client_local_LDADD = $(test_libs)

test_program_client_unix_SOURCE = test-program-client-unix.c
test_program_client_unix_LDADD = $(test_libs)

test_program_client_net_SOURCE = test-program-client-net.c
test_program_client_net_LDADD = $(test_libs)

check-local:
	for bin in $(test_programs); do \
	  if test "$$bin" = "test-program-client-local"; then \
	    if ! env NOCHILDREN=yes $(RUN_TEST) ./$$bin; then exit 1; fi; \
          else \
	    if ! $(RUN_TEST) ./$$bin; then exit 1; fi; \
	  fi \
	done