Home | History | Annotate | Download | only in microspdy
      1 # This Makefile.am is in the public domain
      2 AM_CPPFLAGS = \
      3   -I$(top_srcdir)/src/include \
      4   -I$(top_srcdir)/src/microspdy
      5 
      6 AM_CFLAGS = $(HIDDEN_VISIBILITY_CFLAGS)
      7 
      8 
      9 lib_LTLIBRARIES = \
     10   libmicrospdy.la
     11 
     12 libmicrospdy_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 
     24 libmicrospdy_la_LIBADD = \
     25   $(SPDY_LIBDEPS)
     26 
     27 libmicrospdy_la_LDFLAGS = \
     28   $(SPDY_LIB_LDFLAGS)
     29 
     30 libmicrospdy_la_CPPFLAGS = \
     31   $(AM_CPPFLAGS) $(SPDY_LIB_CPPFLAGS) \
     32   -DBUILDING_MHD_LIB=1
     33 
     34 libmicrospdy_la_CFLAGS = -Wextra \
     35   $(AM_CFLAGS) $(SPDY_LIB_CFLAGS)
     36 
     37 
     38 if USE_COVERAGE
     39   AM_CFLAGS += --coverage
     40 endif
     41