1# This Makefile.am is in the public domain 2SUBDIRS = . 3 4AM_CFLAGS = 5 6if USE_COVERAGE 7 AM_CFLAGS += -fprofile-arcs -ftest-coverage 8endif 9 10AM_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 17if !HAVE_W32 18PERF_GET_CONCURRENT=perf_get_concurrent 19endif 20 21bin_PROGRAMS = \ 22 microspdy2http 23 24microspdy2http_SOURCES = \ 25 proxy.c 26microspdy2http_LDADD = \ 27 $(top_builddir)/src/microspdy/libmicrospdy.la \ 28 -lz \ 29 $(LIBCURL) 30