14 lines
206 B
Makefile
14 lines
206 B
Makefile
|
# Copyright 2005 The Android Open Source Project
|
||
|
|
||
|
LOCAL_PATH:= $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_SRC_FILES := \
|
||
|
makekeycodes.cpp
|
||
|
|
||
|
LOCAL_MODULE := makekeycodes
|
||
|
|
||
|
include $(BUILD_HOST_EXECUTABLE)
|
||
|
|
||
|
|