Fix: examples Makefiles should pass $(LIBS) at last
[lttng-ust.git] / doc / examples / easy-ust / Makefile
index 597071b58621f9e2c5bbc033a5d130dec4b588e5..319db79f11f3eb074d972552295615266408f484 100644 (file)
@@ -22,7 +22,7 @@ CFLAGS = -I.
 all: sample
 
 sample: sample.o tp.o
-       $(CC) $(LIBS) -o $@ $^
+       $(CC) -o $@ $^ $(LIBS)
 
 sample.o: sample.c sample_component_provider.h
        $(CC) $(CFLAGS) -c -o $@ $<
This page took 0.023501 seconds and 4 git commands to generate.