Annotation of embedaddon/strongswan/src/stroke/Android.mk, revision 1.1
1.1 ! misho 1: LOCAL_PATH := $(call my-dir)
! 2: include $(CLEAR_VARS)
! 3:
! 4: # copy-n-paste from Makefile.am
! 5: stroke_SOURCES := \
! 6: stroke.c stroke_msg.h stroke_keywords.c stroke_keywords.h
! 7:
! 8: LOCAL_SRC_FILES := $(filter %.c,$(stroke_SOURCES))
! 9:
! 10: # build stroke -----------------------------------------------------------------
! 11:
! 12: LOCAL_C_INCLUDES += \
! 13: $(strongswan_PATH)/src/libstrongswan
! 14:
! 15: LOCAL_CFLAGS := $(strongswan_CFLAGS)
! 16:
! 17: LOCAL_MODULE := stroke
! 18:
! 19: LOCAL_MODULE_TAGS := optional
! 20:
! 21: LOCAL_ARM_MODE := arm
! 22:
! 23: LOCAL_PRELINK_MODULE := false
! 24:
! 25: LOCAL_SHARED_LIBRARIES += libstrongswan
! 26:
! 27: include $(BUILD_EXECUTABLE)
! 28:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>