OLD | NEW |
1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 LOCAL_PATH := $(call my-dir) | 5 LOCAL_PATH := $(call my-dir) |
6 include $(CLEAR_VARS) | 6 include $(CLEAR_VARS) |
7 | 7 |
8 LOCAL_MODULE := fletch-library | 8 LOCAL_MODULE := fletch-library |
9 LOCAL_CFLAGS := \ | 9 LOCAL_CFLAGS := \ |
10 -DFLETCH32 \ | 10 -DFLETCH32 \ |
11 -DFLETCH_TARGET_OS_POSIX \ | 11 -DFLETCH_TARGET_OS_POSIX \ |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 endif | 88 endif |
89 | 89 |
90 ifeq ($(TARGET_ARCH_ABI), x86) | 90 ifeq ($(TARGET_ARCH_ABI), x86) |
91 LOCAL_CFLAGS += -DFLETCH_TARGET_IA32 | 91 LOCAL_CFLAGS += -DFLETCH_TARGET_IA32 |
92 LOCAL_SRC_FILES += \ | 92 LOCAL_SRC_FILES += \ |
93 ../../../out/ReleaseIA32Android/obj/src/vm/fletch_vm.gen/generated.S \ | 93 ../../../out/ReleaseIA32Android/obj/src/vm/fletch_vm.gen/generated.S \ |
94 ../../../out/ReleaseIA32Android/gen/version.cc | 94 ../../../out/ReleaseIA32Android/gen/version.cc |
95 endif | 95 endif |
96 | 96 |
97 include $(BUILD_STATIC_LIBRARY) | 97 include $(BUILD_STATIC_LIBRARY) |
OLD | NEW |