The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame^] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | |||||
3 | include $(CLEAR_VARS) | ||||
4 | |||||
5 | LOCAL_SRC_FILES:= \ | ||||
6 | AutoMount.c \ | ||||
7 | ProcessKiller.c \ | ||||
8 | Server.c \ | ||||
9 | mountd.c | ||||
10 | |||||
11 | LOCAL_MODULE:= mountd | ||||
12 | |||||
13 | LOCAL_C_INCLUDES := $(KERNEL_HEADERS) | ||||
14 | |||||
15 | LOCAL_CFLAGS := -DCREATE_MOUNT_POINTS=0 | ||||
16 | |||||
17 | LOCAL_SHARED_LIBRARIES := libcutils | ||||
18 | |||||
19 | include $(BUILD_EXECUTABLE) |