Home | History | Annotate | Download | only in platform
      1 # This Makefile.am is in the public domain
      2 AM_CPPFLAGS = \
      3   -I$(top_srcdir)/src/include
      4 
      5 AM_CFLAGS = $(HIDDEN_VISIBILITY_CFLAGS)
      6 
      7 if USE_COVERAGE
      8   AM_CFLAGS += --coverage
      9 endif
     10 
     11 if HAVE_W32
     12 noinst_LTLIBRARIES = \
     13   libplatform_interface.la
     14 libplatform_interface_la_CPPFLAGS = \
     15   $(AM_CPPFLAGS) \
     16   -DBUILDING_MHD_LIB=1
     17 libplatform_interface_la_SOURCES = \
     18   w32functions.c
     19 endif
     20 
     21