Home | History | Annotate | Download | only in spdy2http
      1 # This Makefile.am is in the public domain
      2 SUBDIRS  = .
      3 
      4 AM_CFLAGS =
      5 
      6 if USE_COVERAGE
      7   AM_CFLAGS += -fprofile-arcs -ftest-coverage
      8 endif
      9 
     10 AM_CPPFLAGS = \
     11  -I$(top_srcdir) \
     12  -I$(top_srcdir)/src/include \
     13  -I$(top_srcdir)/src/applicationlayer \
     14  -DDATA_DIR=\"$(top_srcdir)/src/datadir/\" \
     15  $(LIBCURL_CPPFLAGS)
     16 
     17 if !HAVE_W32
     18 PERF_GET_CONCURRENT=perf_get_concurrent
     19 endif
     20 
     21 bin_PROGRAMS = \
     22  microspdy2http
     23 
     24 microspdy2http_SOURCES = \
     25  proxy.c 
     26 microspdy2http_LDADD = \
     27   $(top_builddir)/src/microspdy/libmicrospdy.la \
     28  -lz \
     29  $(LIBCURL)
     30