diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2009-07-29 23:56:48 +0200 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2009-07-29 23:56:48 +0200 |
commit | 34109de24e124dff020b26552d46b20299d779fd (patch) | |
tree | a56912e18b608b123f1c4454293d2b2aa36fa96a /amend/Android.mk | |
parent | Merge korg/donut into korg/master (diff) | |
parent | remove amend (diff) | |
download | android_bootable_recovery-34109de24e124dff020b26552d46b20299d779fd.tar android_bootable_recovery-34109de24e124dff020b26552d46b20299d779fd.tar.gz android_bootable_recovery-34109de24e124dff020b26552d46b20299d779fd.tar.bz2 android_bootable_recovery-34109de24e124dff020b26552d46b20299d779fd.tar.lz android_bootable_recovery-34109de24e124dff020b26552d46b20299d779fd.tar.xz android_bootable_recovery-34109de24e124dff020b26552d46b20299d779fd.tar.zst android_bootable_recovery-34109de24e124dff020b26552d46b20299d779fd.zip |
Diffstat (limited to 'amend/Android.mk')
-rw-r--r-- | amend/Android.mk | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/amend/Android.mk b/amend/Android.mk deleted file mode 100644 index c3b7c3277..000000000 --- a/amend/Android.mk +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 2007 The Android Open Source Project -# - -LOCAL_PATH := $(call my-dir) - -amend_src_files := \ - amend.c \ - lexer.l \ - parser_y.y \ - ast.c \ - symtab.c \ - commands.c \ - execute.c - -amend_test_files := \ - test_symtab.c \ - test_commands.c - -# "-x c" forces the lex/yacc files to be compiled as c; -# the build system otherwise forces them to be c++. -amend_cflags := -Wall -x c - -# -# Build the host-side command line tool -# -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := \ - $(amend_src_files) \ - $(amend_test_files) \ - register.c \ - main.c - -LOCAL_CFLAGS := $(amend_cflags) -g -O0 -LOCAL_MODULE := amend -LOCAL_YACCFLAGS := -v - -include $(BUILD_HOST_EXECUTABLE) - -# -# Build the device-side library -# -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := $(amend_src_files) -LOCAL_SRC_FILES += $(amend_test_files) - -LOCAL_CFLAGS := $(amend_cflags) -LOCAL_MODULE := libamend - -include $(BUILD_STATIC_LIBRARY) |