• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2006 The Android Open Source Project
2ifeq ($(TARGET_ARCH),arm)
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= icache_main.c icache.S icache2.S
7
8LOCAL_SHARED_LIBRARIES := libc
9
10LOCAL_MODULE:= icache
11
12LOCAL_MODULE_TAGS := optional
13
14include $(BUILD_EXECUTABLE)
15endif
16