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 \ |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 9 | mountd.c \ |
The Android Open Source Project | 5ae090e | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 10 | ASEC.c \ |
| 11 | logwrapper.c |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 12 | |
| 13 | LOCAL_MODULE:= mountd |
| 14 | |
| 15 | LOCAL_C_INCLUDES := $(KERNEL_HEADERS) |
| 16 | |
| 17 | LOCAL_CFLAGS := -DCREATE_MOUNT_POINTS=0 |
| 18 | |
| 19 | LOCAL_SHARED_LIBRARIES := libcutils |
| 20 | |
The Android Open Source Project | 13f797d | 2009-02-10 15:44:07 -0800 | [diff] [blame] | 21 | # disabled - we are using vold now instead |
| 22 | # include $(BUILD_EXECUTABLE) |