Files
rk35xx-android14/external/libtraceevent/samples/Makefile
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

27 lines
431 B
Makefile

# SPDX-License-Identifier: LGPL-2.1
include $(src)/scripts/utils.mk
TARGETS :=
TARGETS += test-event
sdir := $(obj)/samples
TARGETS := $(patsubst %,$(sdir)/%,$(TARGETS))
all: $(TARGETS)
$(sdir):
@mkdir -p $(sdir)
$(TARGETS): $(sdir) $(LIBTRACEEVENT_STATIC)
$(sdir)/%: $(bdir)/%.o
$(call do_sample_build,$@,$<)
$(bdir)/%.o: $(bdir)/%.c
$(Q)$(CC) -o $@ -c $< $(CFLAGS) $(INCLUDES)
clean:
$(Q)$(call do_clean,$(sdir)/*)