X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=doc%2Fexamples%2Fhello-static-lib%2FMakefile;h=ec185c1ca38ba59bc0dad57d85803e41e991144b;hb=0d8ba43d97a857d06ed09327fbc115ef27730156;hp=f19133286dfe565d20b82b2b2ab3a2685f1eb77d;hpb=16c96fc0224145192f803fecbdb20ec05fdaf5e2;p=lttng-ust.git diff --git a/doc/examples/hello-static-lib/Makefile b/doc/examples/hello-static-lib/Makefile index f1913328..ec185c1c 100644 --- a/doc/examples/hello-static-lib/Makefile +++ b/doc/examples/hello-static-lib/Makefile @@ -14,7 +14,10 @@ # # 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: