Home | History | Annotate | Download | only in inotify
      1 include $(top_srcdir)/Makefile.decl
      2 
      3 NULL =
      4 
      5 noinst_LTLIBRARIES = libinotify.la
      6 
      7 libinotify_la_SOURCES = 		\
      8 	inotify-kernel.c 		\
      9 	inotify-sub.c 			\
     10 	inotify-path.c 			\
     11 	inotify-missing.c 		\
     12 	inotify-helper.c 		\
     13 	inotify-diag.c			\
     14 	inotify-diag.h			\
     15 	inotify-kernel.h 		\
     16 	inotify-missing.h		\
     17 	inotify-path.h			\
     18 	inotify-sub.h			\
     19 	inotify-helper.h		\
     20 	ginotifyfilemonitor.c		\
     21 	ginotifyfilemonitor.h		\
     22 	ginotifydirectorymonitor.c	\
     23 	ginotifydirectorymonitor.h	\
     24 	$(NULL)
     25 
     26 libinotify_la_CFLAGS = \
     27 	-DG_LOG_DOMAIN=\"GLib-GIO\"	\
     28 	-I$(top_srcdir) 		\
     29 	-I$(top_srcdir)/glib 		\
     30 	-I$(top_srcdir)/gmodule		\
     31 	-I$(top_srcdir)/gio 		\
     32 	-I$(top_builddir)/gio 		\
     33 	$(GLIB_DEBUG_FLAGS)		\
     34 	-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\"	\
     35 	-DGIO_COMPILATION		\
     36 	-DG_DISABLE_DEPRECATED
     37 
     38