aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/Makefile b/src/Makefile
index 645d518..e2965bc 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -14,6 +14,7 @@ OBJS += tracefs-filter.o
OBJS += tracefs-dynevents.o
OBJS += tracefs-eprobes.o
OBJS += tracefs-uprobes.o
+OBJS += tracefs-record.o
# Order matters for the the three below
OBJS += sqlhist-lex.o
@@ -21,7 +22,6 @@ OBJS += sqlhist.tab.o
OBJS += tracefs-sqlhist.o
OBJS := $(OBJS:%.o=$(bdir)/%.o)
-DEPS := $(OBJS:$(bdir)/%.o=$(bdir)/.%.d)
$(LIBTRACEFS_STATIC): $(OBJS)
$(Q)$(call do_build_static_lib)
@@ -48,24 +48,14 @@ sqlhist-lex.c: sqlhist.l sqlhist.tab.c
$(bdir)/%.o: %.c
$(Q)$(call do_fpic_compile)
-$(DEPS): $(bdir)/.%.d: %.c
- $(Q)$(CC) -M -MT $(bdir)/$*.o $(CPPFLAGS) $(CFLAGS) $< > $@
-
-$(OBJS): $(bdir)/%.o : $(bdir)/.%.d
-
tracefs-sqlhist.o: sqlhist.tab.h
$(OBJS): | $(bdir)
-$(DEPS): | $(bdir)
clean:
$(Q)$(call do_clean,$(OBJS) .*.d)
-dep_includes := $(wildcard $(DEPS))
-
-ifneq ($(dep_includes),)
- include $(dep_includes)
-endif
+-include .*.d
$(bdir)/tracefs-sqlhist.o tracefs-sqlhist.o: sqlhist.tab.h