X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=doc%2Fexamples%2Fgetcpu-override%2FMakefile;h=5118d7bb2c458076180c9d0fa828f6125fde0580;hb=31624f6cf986d7e7761847f66562c97bc773a02c;hp=e1e4892c6e1142b418909fb4ed7bdcb68932598f;hpb=40c1d6b99cceaaf5dc9eaae65f5247c82231ad28;p=lttng-ust.git diff --git a/doc/examples/getcpu-override/Makefile b/doc/examples/getcpu-override/Makefile index e1e4892c..5118d7bb 100644 --- a/doc/examples/getcpu-override/Makefile +++ b/doc/examples/getcpu-override/Makefile @@ -1,15 +1,8 @@ +# SPDX-License-Identifier: MIT +# # Copyright (C) 2013 Jérémie Galarneau # Copyright (C) 2014 Mathieu Desnoyers # -# 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 users may see how to build # a program with tracepoint provider probes as stand-alone shared objects. # @@ -18,15 +11,18 @@ LIBS = -ldl # On Linux #LIBS = -lc # On BSD LOCAL_CPPFLAGS += -I. +AM_V_P := : all: lttng-ust-getcpu-override-example.so lttng-ust-getcpu-override-example.o: lttng-ust-getcpu-override-example.c - $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(AM_CFLAGS) $(AM_CPPFLAGS) \ + @if $(AM_V_P); then set -x; else echo " CC $@"; fi; \ + $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(AM_CFLAGS) $(AM_CPPFLAGS) \ $(CFLAGS) -fpic -c -o $@ $< lttng-ust-getcpu-override-example.so: lttng-ust-getcpu-override-example.o - $(CC) -Wl,--no-as-needed -o $@ $(LDFLAGS) $(AM_CFLAGS) \ + @if $(AM_V_P); then set -x; else echo " CCLD $@"; fi; \ + $(CC) -Wl,--no-as-needed -o $@ $(LDFLAGS) $(AM_CFLAGS) \ $(AM_LDFLAGS) $(CFLAGS) -shared -fpic lttng-ust-getcpu-override-example.o .PHONY: clean