Pass the CC variable to the example Makefiles
[lttng-ust.git] / doc / examples / hello-static-lib / Makefile
index f19133286dfe565d20b82b2b2ab3a2685f1eb77d..ec185c1ca38ba59bc0dad57d85803e41e991144b 100644 (file)
 #
 # This makefile is purposefully kept simple to support GNU and BSD make.
 
-CC = gcc
+ifdef AM_CC
+       CC = $(AM_CC)
+endif
+
 LOCAL_CPPFLAGS += -I.
 LIBS = -ldl -llttng-ust        # On Linux
 #LIBS = -lc -llttng-ust        # On BSD
@@ -34,7 +37,7 @@ hello.o: hello.c
 
 hello: hello.o lttng-ust-provider-hello.a
        $(CC) -o $@ $(LDFLAGS) $(CPPFLAGS) $(AM_LDFLAGS) $(AM_CFLAGS) \
-               $(LIBS) hello.o lttng-ust-provider-hello.a
+               hello.o lttng-ust-provider-hello.a $(LIBS)
 
 .PHONY: clean
 clean:
This page took 0.023004 seconds and 4 git commands to generate.