blob: 59cd9b3ae736f9202935efb5b648b6a588aed680 [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001# 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#
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
18
19LOCAL_SRC_FILES := \
Dees_Troye34c1332013-02-06 19:13:00 +000020 buffer.c \
bigbiff bigbiff9c754052013-01-09 09:09:08 -050021 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
35LOCAL_C_INCLUDES := \
36 $(LOCAL_PATH)/include
37
38LOCAL_SHARED_LIBRARIES := \
39 libutils libdl
40
41LOCAL_CFLAGS := \
42 -D_FILE_OFFSET_BITS=64 \
43 -DFUSE_USE_VERSION=26
44
45LOCAL_MODULE := libfuse
46LOCAL_MODULE_TAGS := optional
47
48include $(BUILD_STATIC_LIBRARY)
49#include $(BUILD_SHARED_LIBRARY)
50
51include $(CLEAR_VARS)
52
53LOCAL_SRC_FILES := \
54 fusexmp.c
55
56LOCAL_C_INCLUDES := \
57 $(LOCAL_PATH)/include
58
59LOCAL_CFLAGS := -D_FILE_OFFSET_BITS=64
60
61LOCAL_MODULE := fusexmp
62LOCAL_MODULE_TAGS := optional
63
64LOCAL_STATIC_LIBRARIES := libfuse
65
66include $(BUILD_EXECUTABLE)