Add GNU Make rule to print GENDIR (#2514)
Useful when the TFLM makefile is called recursively and build artifacts used.
BUG=b/327609938
diff --git a/tensorflow/lite/micro/tools/make/Makefile b/tensorflow/lite/micro/tools/make/Makefile
index 213ac0e..8eaed42 100644
--- a/tensorflow/lite/micro/tools/make/Makefile
+++ b/tensorflow/lite/micro/tools/make/Makefile
@@ -935,6 +935,9 @@
# Just build the test targets
build: $(MICROLITE_BUILD_TARGETS)
+list_gendir:
+ @echo $(GENDIR)
+
list_library_sources:
@echo $(MICROLITE_CC_SRCS) $(MICROLITE_CC_KERNEL_SRCS)