blob: 51c7de87a1379352fdf8fc4d4b066f88a52ed9c2 [file] [log] [blame]
# SPDX-License-Identifier: LGPL-2.1
include $(src)/scripts/utils.mk
OBJS =
OBJS += ktrace.o
OBJS += create.o
OBJS := $(OBJS:%.o=$(bdir)/%.o)
DEPS := $(OBJS:$(bdir)/%.o=$(bdir)/.%.d)
$(bdir)/%.o: %.c
$(Q)$(call do_compile)
$(DEPS): $(bdir)/.%.d: %.c
$(Q)$(CC) -M -MT $(bdir)/$*.o $(CPPFLAGS) $(CFLAGS) $< > $@
$(OBJS): $(bdir)/%.o : $(bdir)/.%.d
$(OBJS): | $(bdir)
$(DEPS): | $(bdir)
$(bdir)/ktrace: $(OBJS)
$(Q)$(do_app_build)
ktrace: $(bdir)/ktrace
clean:
$(Q)$(call do_clean,$(OBJS) .*.d)
dep_includes := $(wildcard $(DEPS))
ifneq ($(dep_includes),)
include $(dep_includes)
endif
.PHONY: ktrace clean