X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=doc%2Fexamples%2Fgen-tp%2FMakefile;h=39331854da356d3fbcce28a238823ae08b67c4e6;hb=cbc06a3bd9abe653eaf278cdf4be8bf28dcca267;hp=bc172f0ccefbd08830f05a81b225e9594bb72969;hpb=dc5af9e3311ab28f2728f540f06e61add9d7b5eb;p=lttng-ust.git diff --git a/doc/examples/gen-tp/Makefile b/doc/examples/gen-tp/Makefile index bc172f0c..39331854 100644 --- a/doc/examples/gen-tp/Makefile +++ b/doc/examples/gen-tp/Makefile @@ -1,22 +1,17 @@ +# SPDX-License-Identifier: MIT +# # Copyright (C) 2011-2012 Matthew Khouzam # Copyright (C) 2012 Mathieu Desnoyers # Copyright (C) 2012 Yannick Brosseau # -# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED -# OR IMPLIED. ANY USE IS AT YOUR OWN RISK. -# -# Permission is hereby granted to use or copy this program for any -# purpose, provided the above notices are retained on all copies. -# Permission to modify the code and to distribute modified code is -# granted, provided the above notices are retained, and a notice that -# the code was modified is included with the above copyright notice. -# # This makefile is not using automake so that people can see how to make # simply. It builds a program with a statically embedded tracepoint # provider probe. # # 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 := : @@ -44,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 @@ -56,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: