1
2noinst_LTLIBRARIES = libgmodule.la
3
4libgmodule_la_CPPFLAGS =		\
5	-I$(top_srcdir)			\
6	-I$(top_srcdir)/deps		\
7	-I$(top_srcdir)/deps/glib	\
8	-I$(top_builddir)/deps/glib	\
9	-Wall				\
10	$(NULL)
11
12EXTRA_DIST =			\
13	gmoduleconf.h.in 	\
14	gmodule-dl.c		\
15	gmodule-dld.c		\
16	gmodule-dyld.c		\
17	gmodule-win32.c		\
18	gmoduleconf.h.win32 	\
19	$(NULL)
20
21BUILT_SOURCES = gmoduleconf.h
22gmoduleconf.h:	gmoduleconf.h.in
23
24libgmodule_la_SOURCES = gmodule.c
25libgmodule_la_LIBADD =				\
26	$(G_MODULE_LIBS_EXTRA)			\
27	$(G_MODULE_LIBS)			\
28	$(top_builddir)/deps/glib/$(libglib)	\
29	$(NULL)
30libgmodule_la_LDFLAGS =		\
31	$(G_MODULE_LDFLAGS)	\
32	$(NULL)
33