Files
gimp/devel-docs/tools/Makefile.am
Michael Natterer 16d739b268 Bug 695416 - undefined reference when building devel-docs/tools/widgets.c
Add -lm to the linker flags for the doc-shooter binary. Actually add a
whole snippet of makefile boilerplate that also deals with -mwindows,
all other makefiles seem to have it. I have no clue what it does.
(cherry picked from commit ae5f847a11)
2013-03-08 23:46:20 +01:00

57 lines
1.2 KiB
Makefile

## Process this file with automake to produce Makefile.in
if OS_WIN32
mwindows = -mwindows
else
libm = -lm
endif
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la $(libm)
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
AM_CPPFLAGS = $(GTK_CFLAGS) -DTOP_SRCDIR=\"$(top_srcdir)\"
INCLUDES = \
-I$(top_srcdir) \
$(GEGL_CFLAGS)
AM_LDFLAGS = $(mwindows)
if ENABLE_GTK_DOC
noinst_PROGRAMS = $(DOC_SHOOTER)
endif
doc_shooter_SOURCES = \
shadow.c \
shadow.h \
shooter.c \
units.c \
units.h \
widgets.c \
widgets.h
doc_shooter_LDADD = \
$(libgimpwidgets) \
$(libgimpconfig) \
$(libgimpmodule) \
$(libgimpmath) \
$(libgimpcolor) \
$(libgimpbase) \
$(GTK_LIBS) \
$(X_LIBS) -lX11 -lXext
EXTRA_PROGRAMS = doc-shooter
EXTRA_DIST = README.shooter
clean-local:
rm -f *.png