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 libexpat \ 14 libpng \ 15 libETC1 16 17# Statically link libz for MinGW (Win SDK under Linux), 18# and dynamically link for all others. 19LOCAL_STATIC_LIBRARIES_windows := libz 20LOCAL_LDLIBS_darwin := -lz 21LOCAL_LDLIBS_linux := -lrt -lz 22 23LOCAL_MODULE := etc1tool 24LOCAL_MODULE_HOST_OS := darwin linux windows 25 26include $(BUILD_HOST_EXECUTABLE) 27