Files
android_development/tools/etc1tool/Android.mk
Elliott Hughes 387b63df19 Clean up etc1tool.
Remove makefile cruft and fix all the compiler warnings.

Change-Id: I24e40143cac47a566c191f4f1ca27df7b4f55821
2016-01-05 09:34:58 -08:00

28 lines
535 B
Makefile

# Copyright 2009 Google Inc. All Rights Reserved.
#
# Android.mk for etc1tool
#
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := etc1tool.cpp
LOCAL_STATIC_LIBRARIES := \
libhost \
libexpat \
libpng \
libETC1
# Statically link libz for MinGW (Win SDK under Linux),
# and dynamically link for all others.
LOCAL_STATIC_LIBRARIES_windows := libz
LOCAL_LDLIBS_darwin := -lz
LOCAL_LDLIBS_linux := -lrt -lz
LOCAL_MODULE := etc1tool
LOCAL_MODULE_HOST_OS := darwin linux windows
include $(BUILD_HOST_EXECUTABLE)