bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1 | # Copyright (C) 2009 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | # |
| 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
| 17 | include $(CLEAR_VARS) |
| 18 | |
| 19 | LOCAL_SRC_FILES := \ |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 20 | buffer.c \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 21 | cuse_lowlevel.c \ |
| 22 | fuse.c \ |
| 23 | fuse_kern_chan.c \ |
| 24 | fuse_loop.c \ |
| 25 | fuse_loop_mt.c \ |
| 26 | fuse_lowlevel.c \ |
| 27 | fuse_mt.c fuse_opt.c \ |
| 28 | fuse_session.c \ |
| 29 | fuse_signals.c \ |
| 30 | helper.c \ |
| 31 | mount.c \ |
| 32 | mount_util.c \ |
| 33 | ulockmgr.c |
| 34 | |
| 35 | LOCAL_C_INCLUDES := \ |
| 36 | $(LOCAL_PATH)/include |
| 37 | |
| 38 | LOCAL_SHARED_LIBRARIES := \ |
| 39 | libutils libdl |
| 40 | |
| 41 | LOCAL_CFLAGS := \ |
| 42 | -D_FILE_OFFSET_BITS=64 \ |
| 43 | -DFUSE_USE_VERSION=26 |
| 44 | |
Dees_Troy | df09c8b | 2013-08-06 18:00:13 +0000 | [diff] [blame] | 45 | LOCAL_MODULE := libfusetwrp |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 46 | LOCAL_MODULE_TAGS := optional |
| 47 | |
| 48 | include $(BUILD_STATIC_LIBRARY) |
| 49 | #include $(BUILD_SHARED_LIBRARY) |
| 50 | |
| 51 | include $(CLEAR_VARS) |
| 52 | |
| 53 | LOCAL_SRC_FILES := \ |
| 54 | fusexmp.c |
| 55 | |
| 56 | LOCAL_C_INCLUDES := \ |
| 57 | $(LOCAL_PATH)/include |
| 58 | |
| 59 | LOCAL_CFLAGS := -D_FILE_OFFSET_BITS=64 |
| 60 | |
| 61 | LOCAL_MODULE := fusexmp |
| 62 | LOCAL_MODULE_TAGS := optional |
| 63 | |
Dees_Troy | df09c8b | 2013-08-06 18:00:13 +0000 | [diff] [blame] | 64 | LOCAL_STATIC_LIBRARIES := libfusetwrp |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 65 | |
| 66 | include $(BUILD_EXECUTABLE) |