doc/examples: Move the LIBS after the OBJECTS in the Makefile
[urcu.git] / doc / examples / Makefile.examples.template
index badecffb220699e2934bde72175965ad237e4bc6..e1a971e391423d481207f6bd99387ab51e37b184 100644 (file)
@@ -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) \
This page took 0.023555 seconds and 4 git commands to generate.