doc/examples/gen-tp: pass automake CPPFLAGS/CFLAGS/LDFLAGS
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 26 Aug 2013 15:26:09 +0000 (11:26 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 14 Jan 2014 14:35:45 +0000 (09:35 -0500)
Fix cross-build.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
doc/examples/gen-tp/Makefile

index e5e3cd378a08459987256e9535ca56445fb331a9..bc979d97b89a2ed0b20b657fd3eeed8583fe76c3 100644 (file)
@@ -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
This page took 0.035137 seconds and 4 git commands to generate.