Fix: libs order in Makefile
[lttng-ust.git] / doc / examples / easy-ust / Makefile
index 15ce7ed81450993e076d633ae6f2f51362ef23c7..966c4744bb3c359e100bce061a0e273cb313f986 100644 (file)
@@ -25,7 +25,7 @@ all: sample
 
 sample: sample.o tp.o
        $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(AM_CFLAGS) \
-               $(LIBS) sample.o tp.o
+               sample.o tp.o $(LIBS)
 
 sample.o: sample.c sample_component_provider.h
        $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(CFLAGS) $(AM_CPPFLAGS) \
This page took 0.022632 seconds and 4 git commands to generate.