Files
android_development/tools/etc1tool/Android.mk
Dan Willemsen 0877623830 Remove unused libhost dependency
Change-Id: I5999c1076ca0bce7a7ee91a0c533d99e639062c9
2016-02-29 19:56:40 -08:00

27 lines
524 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 := \
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)