• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This Makefile.am is in the public domain
2AM_CPPFLAGS = \
3  -I$(top_srcdir)/src/include \
4  -I$(top_srcdir)/src/microspdy
5
6AM_CFLAGS = $(HIDDEN_VISIBILITY_CFLAGS)
7
8
9lib_LTLIBRARIES = \
10  libmicrospdy.la
11
12libmicrospdy_la_SOURCES = \
13  io.h io.c \
14  io_openssl.h io_openssl.c \
15  io_raw.h io_raw.c \
16  structures.h structures.c \
17  internal.h internal.c \
18  daemon.h daemon.c \
19  stream.h stream.c \
20  compression.h compression.c \
21  session.h session.c \
22  applicationlayer.c applicationlayer.h \
23  alstructures.c alstructures.h
24libmicrospdy_la_LIBADD = \
25  $(SPDY_LIBDEPS)
26
27libmicrospdy_la_LDFLAGS = \
28  $(SPDY_LIB_LDFLAGS)
29
30libmicrospdy_la_CPPFLAGS = \
31  $(AM_CPPFLAGS) $(SPDY_LIB_CPPFLAGS) \
32  -DBUILDING_MHD_LIB=1
33
34libmicrospdy_la_CFLAGS = -Wextra \
35  $(AM_CFLAGS) $(SPDY_LIB_CFLAGS)
36
37
38if USE_COVERAGE
39  AM_CFLAGS += --coverage
40endif
41