summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 's3d/frameworks/Android.mk')
-rw-r--r--s3d/frameworks/Android.mk49
1 files changed, 0 insertions, 49 deletions
diff --git a/s3d/frameworks/Android.mk b/s3d/frameworks/Android.mk
deleted file mode 100644
index 972cf40..0000000
--- a/s3d/frameworks/Android.mk
+++ /dev/null
@@ -1,49 +0,0 @@
1#
2# Copyright (C) 2011 Texas Instruments Inc.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# This makefile shows how to build your own shared library that can be
18# shipped on the system of a phone, and included additional examples of
19# including JNI code with the library and writing client applications against it.
20
21LOCAL_PATH := $(call my-dir)
22
23include $(CLEAR_VARS)
24
25LOCAL_SRC_FILES := $(call all-subdir-java-files)
26
27LOCAL_MODULE:= com.ti.s3d
28LOCAL_MODULE_TAGS := optional
29
30include $(BUILD_JAVA_LIBRARY)
31
32# ============================================================
33include $(CLEAR_VARS)
34
35LOCAL_SRC_FILES := \
36 $(call all-subdir-java-files) \
37 $(call all-subdir-html-files)
38
39LOCAL_MODULE:= s3d_api
40LOCAL_DROIDDOC_OPTIONS := com.ti.s3d
41LOCAL_MODULE_CLASS := JAVA_LIBRARIES
42LOCAL_DROIDDOC_USE_STANDARD_DOCLET := true
43
44include $(BUILD_DROIDDOC)
45
46# ============================================================
47include $(CLEAR_VARS)
48
49include $(call all-makefiles-under,$(LOCAL_PATH))