Add silent mode to examples Makefiles
[lttng-ust.git] / doc / examples / hello-static-lib / Makefile
CommitLineData
a106a9f8
JG
1# Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
2#
3# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
4# OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
5#
6# Permission is hereby granted to use or copy this program for any
7# purpose, provided the above notices are retained on all copies.
8# Permission to modify the code and to distribute modified code is
9# granted, provided the above notices are retained, and a notice that
10# the code was modified is included with the above copyright notice.
16c96fc0 11#
a106a9f8
JG
12# This Makefile is not using automake so that users may see how to build
13# a program with tracepoint provider probes compiled as static libraries.
16c96fc0
MD
14#
15# This makefile is purposefully kept simple to support GNU and BSD make.
a106a9f8 16
2e390600 17LOCAL_CPPFLAGS += -I.
a106a9f8
JG
18LIBS = -ldl -llttng-ust # On Linux
19#LIBS = -lc -llttng-ust # On BSD
dc5af9e3 20AM_V_P := :
a106a9f8 21
a106a9f8
JG
22all: hello
23
24lttng-ust-provider-hello.o: tp.c ust_tests_hello.h
dc5af9e3
MJ
25 @if $(AM_V_P); then set -x; else echo " CC $@"; fi; \
26 $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(AM_CFLAGS) $(AM_CPPFLAGS) \
e1c62734 27 $(CFLAGS) -c -o $@ $<
a106a9f8
JG
28
29lttng-ust-provider-hello.a: lttng-ust-provider-hello.o
dc5af9e3
MJ
30 @if $(AM_V_P); then set -x; else echo " AR $@"; fi; \
31 ar -rc $@ lttng-ust-provider-hello.o
a106a9f8
JG
32
33hello.o: hello.c
dc5af9e3
MJ
34 @if $(AM_V_P); then set -x; else echo " CC $@"; fi; \
35 $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(AM_CFLAGS) $(AM_CPPFLAGS) \
e1c62734 36 $(CFLAGS) -c -o $@ $<
a106a9f8
JG
37
38hello: hello.o lttng-ust-provider-hello.a
dc5af9e3
MJ
39 @if $(AM_V_P); then set -x; else echo " CCLD $@"; fi; \
40 $(CC) -o $@ $(LDFLAGS) $(CPPFLAGS) $(AM_LDFLAGS) $(AM_CFLAGS) \
e1c62734 41 $(CFLAGS) hello.o lttng-ust-provider-hello.a $(LIBS)
a106a9f8
JG
42
43.PHONY: clean
44clean:
45 rm -f *.o *.a hello
This page took 0.025884 seconds and 4 git commands to generate.