blob: 7d3c3d2bd5848edb4c279f9de73e5f00d4d90d59 (
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
|
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 \
tls.h tls.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
|