Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame^] | 1 | # Copyright 2015 The Android Open Source Project |
2 | # | ||||
3 | # The rest of files in this directory comes from | ||||
4 | # https://github.com/bazelbuild/bazel/tree/master/third_party/ijar | ||||
5 | |||||
6 | LOCAL_PATH:= $(call my-dir) | ||||
7 | |||||
8 | include $(CLEAR_VARS) | ||||
9 | LOCAL_CPP_EXTENSION := cc | ||||
10 | LOCAL_SRC_FILES := classfile.cc ijar.cc zip.cc | ||||
11 | LOCAL_CFLAGS += -Wall | ||||
12 | LOCAL_SHARED_LIBRARIES := libz-host | ||||
13 | LOCAL_MODULE := ijar | ||||
14 | include $(BUILD_HOST_EXECUTABLE) |