forked from AuroraMiddleware/gtk
9e7c91bf83
This adds LDFLAGS everywhere where they were previously pulled in via other libraries. This is however unsupported by modern linkers. You can trigger these failures by building with gold (or, I'm told, with very new ld).
16 lines
419 B
Makefile
16 lines
419 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir) \
|
|
$(GDK_PIXBUF_DEP_CFLAGS)
|
|
|
|
noinst_PROGRAMS = decompose-bits
|
|
|
|
decompose_bits_SOURCES = decompose-bits.c
|
|
decompose_bits_LDADD = $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la $(GLIB_LIBS)
|
|
|
|
EXTRA_DIST += check-13.png check-13-inconsistent.png radio-13.png radio-13-inconsistent.png
|
|
|
|
-include $(top_srcdir)/git.mk
|