1# Copyright 2009 Google Inc. All Rights Reserved. 2# 3# Android.mk for etc1tool 4# 5 6LOCAL_PATH:= $(call my-dir) 7 8include $(CLEAR_VARS) 9 10LOCAL_SRC_FILES := etc1tool.cpp 11 12LOCAL_STATIC_LIBRARIES := \ 13 libhost \ 14 libexpat \ 15 libpng \ 16 libETC1 17 18# Statically link libz for MinGW (Win SDK under Linux), 19# and dynamically link for all others. 20LOCAL_STATIC_LIBRARIES_windows := libz 21LOCAL_LDLIBS_darwin := -lz 22LOCAL_LDLIBS_linux := -lrt -lz 23 24LOCAL_MODULE := etc1tool 25LOCAL_MODULE_HOST_OS := darwin linux windows 26 27include $(BUILD_HOST_EXECUTABLE) 28