1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# SPDX-License-Identifier: LGPL-2.1
include $(src)/scripts/utils.mk
TARGETS = $(bdir)/trace-utest
OBJS =
OBJS += trace-utest.o
OBJS += traceevent-utest.o
LIBS += -lcunit \
-ldl \
$(LIBTRACEEVENT_STATIC)
OBJS := $(OBJS:%.o=$(bdir)/%.o)
DEPS := $(OBJS:$(bdir)/%.o=$(bdir)/.%.d)
$(OBJS): | $(bdir)
$(DEPS): | $(bdir)
$(bdir)/trace-utest: $(OBJS) $(LIBTRACEEVENT_STATIC)
$(Q)$(do_app_build)
$(bdir)/%.o: %.c
$(Q)$(call do_fpic_compile)
$(DEPS): $(bdir)/.%.d: %.c
$(Q)$(CC) -M $(CPPFLAGS) $(CFLAGS) $< > $@
$(Q)$(CC) -M -MT $(bdir)/$*.o $(CPPFLAGS) $(CFLAGS) $< > $@
$(OBJS): $(bdir)/%.o : $(bdir)/.%.d
dep_includes := $(wildcard $(DEPS))
test: $(TARGETS)
clean:
$(Q)$(call do_clean,$(TARGETS) $(bdir)/*.o $(bdir)/.*.d)
|