mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-27 07:56:14 +01:00
b3b7ea8e22
Stop using ad hoc -I in all of our Makefile.am. Use the new variables instead.
15 lines
524 B
Makefile
15 lines
524 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = -g $(gobject_INCLUDES) $(GLIB_DEBUG_FLAGS)
|
|
|
|
noinst_PROGRAMS = $(TEST_PROGS)
|
|
libgobject_LDADD = ../libgobject-2.0.la $(top_builddir)/gthread/libgthread-2.0.la $(top_builddir)/glib/libglib-2.0.la
|
|
|
|
TEST_PROGS += threadtests dynamictests binding
|
|
threadtests_SOURCES = threadtests.c
|
|
threadtests_LDADD = $(libgobject_LDADD)
|
|
dynamictests_SOURCES = dynamictests.c
|
|
dynamictests_LDADD = $(libgobject_LDADD)
|
|
binding_SOURCES = binding.c
|
|
binding_LDADD = $(libgobject_LDADD)
|