From: Mathieu Desnoyers Date: Mon, 26 Aug 2013 15:26:09 +0000 (-0400) Subject: doc/examples/gen-tp: pass automake CPPFLAGS/CFLAGS/LDFLAGS X-Git-Tag: v2.2.3~6 X-Git-Url: http://git.liburcu.org/?p=lttng-ust.git;a=commitdiff_plain;h=acc6a83584f46fea81e4554df137cfda4434a1e4 doc/examples/gen-tp: pass automake CPPFLAGS/CFLAGS/LDFLAGS Fix cross-build. Signed-off-by: Mathieu Desnoyers --- diff --git a/doc/examples/gen-tp/Makefile b/doc/examples/gen-tp/Makefile index e5e3cd37..bc979d97 100644 --- a/doc/examples/gen-tp/Makefile +++ b/doc/examples/gen-tp/Makefile @@ -40,6 +40,9 @@ sample.o: sample.c sample_tracepoint.h # This rule generate .o only and depends on rules for generating # the .h and .c %.o: %.tp %.c %.h + CPPFLAGS="$(CPPFLAGS) $(AM_CPPFLAGS)" \ + CFLAGS="$(CFLAGS) $(AM_CFLAGS)" \ + LDFLAGS="$(LDFLAGS) $(AM_LDFLAGS)" \ $(LTTNG_GEN_TP_PATH)lttng-gen-tp -o $@ $< # The following rule can be used to generate all files instead of having one