Implement tracef() instrumentation API
[lttng-ust.git] / doc / examples / demo-tracef / Makefile
1 # Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
2 # Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 #
4 # THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
5 # OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
6 #
7 # Permission is hereby granted to use or copy this program for any
8 # purpose, provided the above notices are retained on all copies.
9 # Permission to modify the code and to distribute modified code is
10 # granted, provided the above notices are retained, and a notice that
11 # the code was modified is included with the above copyright notice.
12 #
13 # This Makefile is not using automake so that users may see how to build
14 # a program with tracepoint provider probes as stand-alone shared objects.
15 #
16 # This makefile is purposefully kept simple to support GNU and BSD make.
17
18 CC = gcc
19 LIBS = -ldl -llttng-ust # On Linux
20 #LIBS = -lc # On BSD
21 LOCAL_CPPFLAGS += -I.
22
23 all: demo-tracef
24
25 demo-tracef.o: demo-tracef.c
26 $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(CFLAGS) $(AM_CPPFLAGS) \
27 $(AM_CFLAGS) -c -o $@ $<
28
29 demo-tracef: demo-tracef.o
30 $(CC) $(LDFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(AM_CFLAGS) \
31 -o $@ $< $(LIBS)
32
33 .PHONY: clean
34 clean:
35 rm -f *.o *.a demo-tracef
This page took 0.036971 seconds and 5 git commands to generate.