aboutsummaryrefslogtreecommitdiff
path: root/src/microspdy/Makefile.am
blob: 9ad451bd12be7e25ddedabc7e85cd7948c0dcea2 (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
39
40
if USE_PRIVATE_PLIBC_H
 PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc
endif

AM_CPPFLAGS = \
  $(PLIBC_INCLUDE) \
  -I$(top_srcdir)/src/include \
  -I$(top_srcdir)/src/microspdy


EXTRA_DIST = EXPORT.sym


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_CFLAGS = -Wextra \
  $(SPDY_LIB_CFLAGS)


if USE_COVERAGE
  AM_CFLAGS = --coverage
endif