aboutsummaryrefslogtreecommitdiff
path: root/src/microspdy/Makefile.am
blob: bc4806467bdbbbc84d4c2597100f807134e2837b (plain) (blame)
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
AM_CPPFLAGS = \
  -I$(top_srcdir)/src/include \
  -I$(top_srcdir)/src/microspdy

AM_CFLAGS = $(HIDDEN_VISIBILITY_CFLAGS)


lib_LTLIBRARIES = \
  libmicrospdy.la

libmicrospdy_la_SOURCES = \
  io.h io.c \
  io_openssl.h io_openssl.c \
  io_raw.h io_raw.c \
  structures.h structures.c \
  internal.h internal.c \
  daemon.h daemon.c \
  stream.h stream.c \
  compression.h compression.c \
  session.h session.c \
  applicationlayer.c applicationlayer.h \
  alstructures.c alstructures.h 


libmicrospdy_la_LDFLAGS = \
  $(SPDY_LIB_LDFLAGS) 

libmicrospdy_la_CPPFLAGS = \
  $(AM_CPPFLAGS) \
  -DBUILDING_MHD_LIB=1

libmicrospdy_la_CFLAGS = -Wextra \
  $(SPDY_LIB_CFLAGS)


if USE_COVERAGE
  AM_CFLAGS += --coverage
endif