Alice Chu | cdfb06f | 2012-11-01 11:33:04 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_MODULE := checkseapp |
| 6 | LOCAL_MODULE_TAGS := optional |
| 7 | LOCAL_C_INCLUDES := external/libsepol/include/ |
Robert Craig | c9bb91d | 2013-11-01 10:24:36 -0400 | [diff] [blame] | 8 | LOCAL_CFLAGS := -DLINK_SEPOL_STATIC -Wall -Werror |
Alice Chu | cdfb06f | 2012-11-01 11:33:04 -0700 | [diff] [blame] | 9 | LOCAL_SRC_FILES := check_seapp.c |
| 10 | LOCAL_STATIC_LIBRARIES := libsepol |
dcashman | 28acbea | 2015-03-13 10:25:23 -0700 | [diff] [blame^] | 11 | LOCAL_CXX_STL := none |
Alice Chu | cdfb06f | 2012-11-01 11:33:04 -0700 | [diff] [blame] | 12 | |
| 13 | include $(BUILD_HOST_EXECUTABLE) |
| 14 | |
| 15 | ################################### |
| 16 | include $(CLEAR_VARS) |
| 17 | |
| 18 | LOCAL_MODULE := checkfc |
| 19 | LOCAL_MODULE_TAGS := optional |
| 20 | LOCAL_C_INCLUDES := external/libsepol/include \ |
| 21 | external/libselinux/include |
Stephen Smalley | 7b2bee9 | 2013-10-31 09:22:26 -0400 | [diff] [blame] | 22 | LOCAL_CFLAGS := -Wall -Werror |
Alice Chu | cdfb06f | 2012-11-01 11:33:04 -0700 | [diff] [blame] | 23 | LOCAL_SRC_FILES := checkfc.c |
| 24 | LOCAL_STATIC_LIBRARIES := libsepol libselinux |
dcashman | 28acbea | 2015-03-13 10:25:23 -0700 | [diff] [blame^] | 25 | LOCAL_CXX_STL := none |
Alice Chu | cdfb06f | 2012-11-01 11:33:04 -0700 | [diff] [blame] | 26 | |
| 27 | include $(BUILD_HOST_EXECUTABLE) |
Geremy Condra | edf7b4c | 2013-03-26 22:19:03 +0000 | [diff] [blame] | 28 | |
| 29 | ################################## |
| 30 | include $(CLEAR_VARS) |
| 31 | |
| 32 | LOCAL_MODULE := insertkeys.py |
| 33 | LOCAL_SRC_FILES := insertkeys.py |
| 34 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 35 | LOCAL_IS_HOST_MODULE := true |
| 36 | LOCAL_MODULE_TAGS := optional |
| 37 | |
| 38 | include $(BUILD_PREBUILT) |
Geremy Condra | 01aaeb6 | 2013-08-22 18:23:37 -0700 | [diff] [blame] | 39 | ################################### |
| 40 | include $(CLEAR_VARS) |
| 41 | |
| 42 | LOCAL_MODULE := sepolicy-check |
| 43 | LOCAL_MODULE_TAGS := optional |
Stephen Smalley | 7b2bee9 | 2013-10-31 09:22:26 -0400 | [diff] [blame] | 44 | LOCAL_C_INCLUDES := external/libsepol/include |
| 45 | LOCAL_CFLAGS := -Wall -Werror |
Geremy Condra | 01aaeb6 | 2013-08-22 18:23:37 -0700 | [diff] [blame] | 46 | LOCAL_SRC_FILES := sepolicy-check.c |
Stephen Smalley | 7b2bee9 | 2013-10-31 09:22:26 -0400 | [diff] [blame] | 47 | LOCAL_STATIC_LIBRARIES := libsepol |
dcashman | 28acbea | 2015-03-13 10:25:23 -0700 | [diff] [blame^] | 48 | LOCAL_CXX_STL := none |
Stephen Smalley | 7b2bee9 | 2013-10-31 09:22:26 -0400 | [diff] [blame] | 49 | |
| 50 | include $(BUILD_HOST_EXECUTABLE) |
| 51 | |
dcashman | 28acbea | 2015-03-13 10:25:23 -0700 | [diff] [blame^] | 52 | include $(call all-makefiles-under,$(LOCAL_PATH)) |