Home | History | Annotate | Download | only in win32
      1 include $(top_srcdir)/Makefile.decl
      2 
      3 NULL =
      4 
      5 noinst_LTLIBRARIES = libgiowin32.la
      6 
      7 libgiowin32_la_SOURCES =			\
      8 	gwin32directorymonitor.c		\
      9 	gwin32directorymonitor.h		\
     10 	gwinhttpvfs.c				\
     11 	gwinhttpvfs.h				\
     12 	gwinhttpfile.c				\
     13 	gwinhttpfile.h				\
     14 	gwinhttpfileinputstream.c		\
     15 	gwinhttpfileinputstream.h		\
     16 	gwinhttpfileoutputstream.c		\
     17 	gwinhttpfileoutputstream.h		\
     18 	winhttp.h				\
     19 	$(NULL)
     20 
     21 libgiowin32_la_CFLAGS = \
     22 	-DG_LOG_DOMAIN=\"GLib-GIO\"	\
     23 	-I$(top_srcdir) 		\
     24 	-I$(top_srcdir)/glib 		\
     25 	-I$(top_srcdir)/gmodule		\
     26 	-I$(top_srcdir)/gio 		\
     27 	$(GLIB_DEBUG_FLAGS)		\
     28 	-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\"	\
     29 	-DGIO_COMPILATION		\
     30 	-DG_DISABLE_DEPRECATED
     31