1c00d46b25
- Deal with some -Wunused issues Change-Id: If9a05ccbda862bbd401df0f5d5a1837abedd9b83
14 lines
226 B
Makefile
14 lines
226 B
Makefile
ifeq ($(HOST_OS),linux)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := gpttool.c
|
|
LOCAL_STATIC_LIBRARIES := libz
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
LOCAL_MODULE := gpttool
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
endif
|