mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 08:56:16 +01:00
b3b7ea8e22
Stop using ad hoc -I in all of our Makefile.am. Use the new variables instead.
42 lines
947 B
Makefile
42 lines
947 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = \
|
|
$(gmodule_INCLUDES) \
|
|
$(GLIB_DEBUG_FLAGS)
|
|
|
|
libglib = $(top_builddir)/glib/libglib-2.0.la
|
|
libgthread = $(top_builddir)/gthread/libgthread-2.0.la
|
|
libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la
|
|
libgobject = $(top_builddir)/gobject/libgobject-2.0.la
|
|
|
|
LDADD = $(libglib) $(libgobject) $(libgthread) $(G_THREAD_LIBS)
|
|
|
|
test_programs = \
|
|
closures \
|
|
objects \
|
|
objects2 \
|
|
properties \
|
|
properties2 \
|
|
properties3 \
|
|
properties4 \
|
|
signal1 \
|
|
signal2 \
|
|
signal3
|
|
|
|
|
|
|
|
signal1_SOURCES = signals.c
|
|
signal1_CFLAGS = -DTESTNUM=1 $(AM_CFLAGS)
|
|
signal2_SOURCES = signals.c
|
|
signal2_CFLAGS = -DTESTNUM=2 $(AM_CFLAGS)
|
|
signal3_SOURCES = signals.c
|
|
signal3_CFLAGS = -DTESTNUM=3 $(AM_CFLAGS)
|
|
|
|
check_PROGRAMS = $(test_programs)
|
|
|
|
all: $(check_PROGRAMS)
|
|
|
|
TESTS = $(test_programs)
|
|
TESTS_ENVIRONMENT = srcdir=$(srcdir) \
|
|
LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset
|