fixup! Implement Runtime wrapper
[deliverable/lttng-ivc.git] / lttng_ivc / apps / gen_ust_events / Makefile
CommitLineData
dfcb4a58
JR
1# Copyright (C) 2017 Jonathan Rajotte <jonathan.rajotte-julien@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.
11
12LIBS = -llttng-ust -ldl
13LOCAL_CPPFLAGS += -I.
14
15all: app
16
17.PHONY: app
18
19app: gen-ust-events.o tp.o
20 $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ $(LIBS)
21
22gen-ust-events.o: gen-ust-events.c tp.h
23 $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(CFLAGS) -c -o $@ $<
24
25tp.o: tp.c
26 $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(AM_CFLAGS) $(AM_CPPFLAGS) $(CFLAGS) -c -o $@ $<
27
28
29
This page took 0.022888 seconds and 5 git commands to generate.