Remove debug print from Makefile
diff --git a/meta-phosphor/common/recipes-phosphor/obmc-phosphor-example-sdbus/files/Makefile b/meta-phosphor/common/recipes-phosphor/obmc-phosphor-example-sdbus/files/Makefile
index 5166fdf..0aaeb53 100644
--- a/meta-phosphor/common/recipes-phosphor/obmc-phosphor-example-sdbus/files/Makefile
+++ b/meta-phosphor/common/recipes-phosphor/obmc-phosphor-example-sdbus/files/Makefile
@@ -6,8 +6,6 @@
 LIBS += $(shell pkg-config --libs $(DEPPKGS))
 
 %.o : %.c
-	echo $(CFLAGS)
-	echo $(INCLUDES)
 	$(CC) -c $< $(CFLAGS) $(INCLUDES) -o $@
 $(EXE): $(OBJS)
 	$(CC) $^ $(LDFLAGS) $(LIBS) -o $@