From bda791c1073f2074236173039faf34edb713ddf7 Mon Sep 17 00:00:00 2001 From: Alexandre Montplaisir Date: Mon, 8 Jul 2013 12:24:30 -0400 Subject: [PATCH] doc/examples: Move the LIBS after the OBJECTS in the Makefile Fixes #569. Signed-off-by: Alexandre Montplaisir Signed-off-by: Mathieu Desnoyers --- doc/examples/Makefile.examples.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/Makefile.examples.template b/doc/examples/Makefile.examples.template index badecff..e1a971e 100644 --- a/doc/examples/Makefile.examples.template +++ b/doc/examples/Makefile.examples.template @@ -18,7 +18,7 @@ all: $(BINARY) $(BINARY): $(OBJECTS) $(CC) $(CFLAGS) $(LDFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) \ - $(LIBS) -o $@ $(OBJECTS) + -o $@ $(OBJECTS) $(LIBS) $(OBJECTS): $(SOURCES) $(DEPS) $(CC) $(CPPFLAGS) $(CFLAGS) $(AM_CPPFLAGS) $(AM_CFLAGS) \ -- 2.34.1