docs/libs/Makefile.am: Include our build-prefix libs and includes before the generic ones to avoid linking against th...

Original commit message from CVS:
* docs/libs/Makefile.am:
Include our build-prefix libs and includes before the generic ones to
avoid linking against the installed libs when we want the build-tree
ones.
This commit is contained in:
Jan Schmidt 2007-07-26 14:05:23 +00:00
parent 896e1a3d5d
commit ce3c96049e
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2007-07-26 Jan Schmidt <thaytan@mad.scientist.com>
* docs/libs/Makefile.am:
Include our build-prefix libs and includes before the generic ones to
avoid linking against the installed libs when we want the build-tree
ones.
2007-07-26 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Steve Fink <sphink gmail com>

View file

@ -81,8 +81,8 @@ extra_files =
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
# contains GtkObjects/GObjects and you want to document signals and properties.
GTKDOC_CFLAGS = $(GST_OBJ_CFLAGS) -I$(top_builddir) -I$(top_builddir)/libs
GTKDOC_LIBS = $(GST_OBJ_LIBS) $(SCANOBJ_DEPS)
GTKDOC_CFLAGS = -I$(top_builddir) -I$(top_builddir)/libs $(GST_OBJ_CFLAGS)
GTKDOC_LIBS = $(SCANOBJ_DEPS) $(GST_OBJ_LIBS)
GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)