Andrew Hsieh | 1796fd6 | 2013-04-13 09:42:47 +0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
2 | |||||
3 | include $(CLEAR_VARS) | ||||
4 | LOCAL_MODULE := test_wait-dynamic | ||||
5 | LOCAL_SRC_FILES := test_wait.c | ||||
6 | include $(BUILD_EXECUTABLE) | ||||
7 | |||||
8 | include $(CLEAR_VARS) | ||||
9 | LOCAL_MODULE := test_wait-static | ||||
10 | LOCAL_SRC_FILES := test_wait.c | ||||
Dan Albert | c855842 | 2018-02-14 14:01:09 -0800 | [diff] [blame] | 11 | LOCAL_LDFLAGS += -static |
Andrew Hsieh | 1796fd6 | 2013-04-13 09:42:47 +0800 | [diff] [blame] | 12 | include $(BUILD_EXECUTABLE) |