X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=doc%2Fexamples%2Fgen-tp%2FMakefile;h=39331854da356d3fbcce28a238823ae08b67c4e6;hb=cadfcbfcd89795086bfeb49af84dadc35154c754;hp=de62e481485ccbfc1e3fe9a4e4eac0e26ea60a11;hpb=c0c0989ab70574e09b2f7e8b48c2da6af664a849;p=lttng-ust.git diff --git a/doc/examples/gen-tp/Makefile b/doc/examples/gen-tp/Makefile index de62e481..39331854 100644 --- a/doc/examples/gen-tp/Makefile +++ b/doc/examples/gen-tp/Makefile @@ -10,6 +10,8 @@ # # This makefile is purposefully kept simple to support GNU and BSD make. +PYTHON := python + LIBS = -ldl -llttng-ust #On Linux #LIBS = -lc -llttng-ust #On BSD AM_V_P := : @@ -37,9 +39,8 @@ sample.o: sample.c sample_tracepoint.h @if $(AM_V_P); then set -x; else echo " CC $@"; fi; \ CPPFLAGS="$(AM_CPPFLAGS) $(CPPFLAGS)" \ CFLAGS="$(AM_CFLAGS) $(CFLAGS)" \ - LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS)" \ CC="$(CC)" \ - $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< + $(PYTHON) $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< # The following rule can be used to generate all files instead of having one # for each file type. Note that the sample.o has a dependency on the @@ -49,11 +50,11 @@ sample.o: sample.c sample_tracepoint.h %.h: %.tp @if $(AM_V_P); then set -x; else echo " GEN $@"; fi; \ - $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< + $(PYTHON) $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< %.c: %.tp @if $(AM_V_P); then set -x; else echo " GEN $@"; fi; \ - $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< + $(PYTHON) $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< .PHONY: clean clean: