blob: f531426928f601657f94d02a9380aec799b42649 [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 \
Motorhead19911c39bc62014-06-12 15:56:53 -070043 -DFUSE_USE_VERSION=26 \
44 -fno-strict-aliasing
bigbiff bigbiff9c754052013-01-09 09:09:08 -050045
Dees_Troydf09c8b2013-08-06 18:00:13 +000046LOCAL_MODULE := libfusetwrp
bigbiff bigbiff9c754052013-01-09 09:09:08 -050047LOCAL_MODULE_TAGS := optional
48
49include $(BUILD_STATIC_LIBRARY)
50#include $(BUILD_SHARED_LIBRARY)
51
52include $(CLEAR_VARS)
53
54LOCAL_SRC_FILES := \
55 fusexmp.c
56
57LOCAL_C_INCLUDES := \
58 $(LOCAL_PATH)/include
59
60LOCAL_CFLAGS := -D_FILE_OFFSET_BITS=64
61
62LOCAL_MODULE := fusexmp
63LOCAL_MODULE_TAGS := optional
64
Dees_Troydf09c8b2013-08-06 18:00:13 +000065LOCAL_STATIC_LIBRARIES := libfusetwrp
bigbiff bigbiff9c754052013-01-09 09:09:08 -050066
Flemmard4e2ec812014-03-10 20:18:13 +010067LOCAL_SHARED_LIBRARIES := \
68 libutils libdl
69
bigbiff bigbiff9c754052013-01-09 09:09:08 -050070include $(BUILD_EXECUTABLE)