Fix: examples Makefiles should pass $(LIBS) at last
[lttng-ust.git] / doc / examples / easy-ust / Makefile
index 3d043df428f51f02e1c9c05cfbb8be082f0b8924..1e3c941268f5aad546509faa466fccebbfdfbd64 100644 (file)
@@ -23,7 +23,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.024129 seconds and 4 git commands to generate.