Remove this. RC doesn't let you configure it, and no one has complained,
[platform/upstream/libsoup.git] / libsoup / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 INCLUDES =                              \
4         -DG_LOG_DOMAIN=\"SOUP\"         \
5         -DSYSCONFDIR=\"$(sysconfdir)\"  \
6         -DLIBEXECDIR=\"$(libexecdir)\"  \
7         -I$(top_srcdir)                 \
8         $(SOUP_DEBUG_FLAGS)             \
9         $(GLIB_CFLAGS)                  \
10         $(GNUTLS_CFLAGS)
11
12 MARSHAL_GENERATED = soup-marshal.c soup-marshal.h
13
14 soup-marshal.h: soup-marshal.list
15         ( @GLIB_GENMARSHAL@ --prefix=soup_marshal soup-marshal.list --header > soup-marshal.tmp \
16         && mv soup-marshal.tmp soup-marshal.h ) \
17         || ( rm -f soup-marshal.tmp && exit 1 )
18
19 soup-marshal.c: soup-marshal.h
20         ( (echo '#include "soup-marshal.h"'; @GLIB_GENMARSHAL@ --prefix=soup_marshal soup-marshal.list --body) > soup-marshal.tmp \
21         && mv soup-marshal.tmp soup-marshal.c ) \
22         || ( rm -f soup-marshal.tmp && exit 1 )
23
24 BUILT_SOURCES = $(MARSHAL_GENERATED)
25
26 CLEANFILES = $(MARSHAL_GENERATED)
27
28 libsoupincludedir = $(includedir)/libsoup-2.2/libsoup
29
30 libsoupinclude_HEADERS =        \
31         soup.h                  \
32         soup-address.h          \
33         soup-connection.h       \
34         soup-context.h          \
35         soup-error.h            \
36         soup-headers.h          \
37         soup-message.h          \
38         soup-method.h           \
39         soup-misc.h             \
40         soup-server-auth.h      \
41         soup-server-message.h   \
42         soup-server.h           \
43         soup-socket.h           \
44         soup-uri.h
45
46 lib_LTLIBRARIES = libsoup-2.2.la
47
48 libsoup_2_2_la_LDFLAGS =        \
49         -version-info $(SOUP_CURRENT):$(SOUP_REVISION):$(SOUP_AGE)
50
51 libsoup_2_2_la_LIBADD =         \
52         $(GLIB_LIBS)            \
53         $(GNUTLS_LIBS)
54
55 libsoup_2_2_la_SOURCES =        \
56         $(MARSHAL_GENERATED)    \
57         md5-utils.h             \
58         md5-utils.c             \
59         soup-address.c          \
60         soup-auth.h             \
61         soup-auth.c             \
62         soup-auth-basic.h       \
63         soup-auth-basic.c       \
64         soup-auth-digest.h      \
65         soup-auth-digest.c      \
66         soup-auth-ntlm.h        \
67         soup-auth-ntlm.c        \
68         soup-connection.c       \
69         soup-context.c          \
70         soup-dns.h              \
71         soup-dns.c              \
72         soup-error.c            \
73         soup-gnutls.h           \
74         soup-gnutls.c           \
75         soup-headers.c          \
76         soup-message.c          \
77         soup-method.c           \
78         soup-misc.c             \
79         soup-private.h          \
80         soup-queue.h            \
81         soup-queue.c            \
82         soup-server.c           \
83         soup-server-auth.c      \
84         soup-server-message.c   \
85         soup-socket.c           \
86         soup-ssl.h              \
87         soup-ssl.c              \
88         soup-transfer.h         \
89         soup-transfer.c         \
90         soup-uri.c
91
92 EXTRA_DIST= soup-marshal.list