mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-15 00:36:19 +01:00
3cbcbee7a6
svn path=/trunk/; revision=6257
23 lines
527 B
Makefile
23 lines
527 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = \
|
|
-g \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/glib \
|
|
-I$(top_srcdir)/gmodule \
|
|
-I$(top_srcdir)/gobject \
|
|
-I$(top_srcdir)/gio \
|
|
$(GLIB_DEBUG_FLAGS)
|
|
|
|
noinst_PROGRAMS = $(TEST_PROGS)
|
|
progs_ldadd = \
|
|
$(top_builddir)/glib/libglib-2.0.la \
|
|
$(top_builddir)/gobject/libgobject-2.0.la \
|
|
$(top_builddir)/gio/libgio-2.0.la
|
|
|
|
|
|
TEST_PROGS += memory-input-stream
|
|
memory_input_stream_SOURCES = memory-input-stream.c
|
|
memory_input_stream_LDADD = $(progs_ldadd)
|
|
|