1 LOCAL_PATH:= $(call my-dir) 2 3 #---------------------------------------------------------------- 4 # libip4tc 5 6 include $(CLEAR_VARS) 7 8 LOCAL_C_INCLUDES:= \ 9 $(KERNEL_HEADERS) \ 10 $(LOCAL_PATH)/../include/ 11 12 # Accommodate arm-eabi-4.4.3 tools that don't set __ANDROID__ 13 LOCAL_CFLAGS:=-D__ANDROID__ 14 15 LOCAL_SRC_FILES:= \ 16 libip4tc.c \ 17 18 19 LOCAL_MODULE_TAGS:= 20 LOCAL_MODULE:=libip4tc 21 22 include $(BUILD_STATIC_LIBRARY) 23 24 25 #---------------------------------------------------------------- 26 # libip6tc 27 28 include $(CLEAR_VARS) 29 30 LOCAL_C_INCLUDES:= \ 31 $(KERNEL_HEADERS) \ 32 $(LOCAL_PATH)/../include/ 33 34 # Accommodate arm-eabi-4.4.3 tools that don't set __ANDROID__ 35 LOCAL_CFLAGS:=-D__ANDROID__ 36 37 LOCAL_SRC_FILES:= \ 38 libip6tc.c \ 39 40 41 LOCAL_MODULE_TAGS:= 42 LOCAL_MODULE:=libip6tc 43 44 include $(BUILD_STATIC_LIBRARY) 45 46 #---------------------------------------------------------------- 47