Rename "TARGET" to "MODULE" in the build system.
Part one of the grand renaming.
API_CHANGE: Third parties may need to update their makefiles.
Any variables with "LOCAL" and "TARGET" in their names
should now use "MODULE" instead of "TARGET"; e.g., LOCAL_MODULE,
LOCAL_MODULE_TAGS.
PRESUBMIT=passed
OCL=39840
Change-Id: Ica9a7937d3d9552ab84db46ac6eea8a290e404fe
Signed-off-by: Glenn Kasten <gkasten@google.com>
diff --git a/tools/resampler_tools/Makefile b/tools/resampler_tools/Makefile
index 28bd993..40f7a67 100644
--- a/tools/resampler_tools/Makefile
+++ b/tools/resampler_tools/Makefile
@@ -10,7 +10,7 @@
LOCAL_SRC_FILES := \
fir.cpp
-LOCAL_TARGET := fir
+LOCAL_MODULE := fir
include $(BUILD_HOST_EXECUTABLE)