mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
39 lines
723 B
Makefile
39 lines
723 B
Makefile
|
include $(top_srcdir)/Makefile.decl
|
||
|
|
||
|
NULL =
|
||
|
|
||
|
noinst_LTLIBRARIES = libfen.la
|
||
|
|
||
|
libfen_la_SOURCES = \
|
||
|
fen-dump.c \
|
||
|
fen-dump.h \
|
||
|
fen-kernel.c \
|
||
|
fen-kernel.h \
|
||
|
fen-node.c \
|
||
|
fen-node.h \
|
||
|
fen-missing.c \
|
||
|
fen-missing.h \
|
||
|
fen-helper.c \
|
||
|
fen-helper.h \
|
||
|
fen-data.c \
|
||
|
fen-data.h \
|
||
|
fen-sub.c \
|
||
|
fen-sub.h \
|
||
|
gfenfilemonitor.c \
|
||
|
gfenfilemonitor.h \
|
||
|
gfendirectorymonitor.c \
|
||
|
gfendirectorymonitor.h \
|
||
|
$(NULL)
|
||
|
|
||
|
libfen_la_CFLAGS = \
|
||
|
-DG_LOG_DOMAIN=\"GLib-GIO\" \
|
||
|
-I$(top_srcdir) \
|
||
|
-I$(top_srcdir)/glib \
|
||
|
-I$(top_srcdir)/gmodule \
|
||
|
-I$(top_srcdir)/gio \
|
||
|
-I$(top_builddir)/gio \
|
||
|
$(GLIB_DEBUG_FLAGS) \
|
||
|
-DGIO_MODULE_DIR=\"$(GIO_MODULE_DIR)\" \
|
||
|
-DGIO_COMPILATION \
|
||
|
-DG_DISABLE_DEPRECATED
|