da752cabb5
Android/MacOS X build support for checkpolicy. Create a Android.mk file for Android build integration. Introduce DARWIN ifdefs for building on MacOS X. Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov> Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
62 lines
1.2 KiB
Makefile
62 lines
1.2 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
common_src_files := \
|
|
policy_parse.y \
|
|
policy_scan.l \
|
|
queue.c \
|
|
module_compiler.c \
|
|
parse_util.c \
|
|
policy_define.c
|
|
|
|
common_cflags := \
|
|
-Wall -Wshadow -O2 \
|
|
-pipe -fno-strict-aliasing \
|
|
-Wno-return-type
|
|
|
|
ifeq ($(HOST_OS),darwin)
|
|
common_cflags += -DDARWIN
|
|
endif
|
|
|
|
common_includes := \
|
|
$(LOCAL_PATH)/ \
|
|
$(LOCAL_PATH)/../libsepol/include/ \
|
|
$(LOCAL_PATH)/../libsepol/src/ \
|
|
|
|
##
|
|
# "-x c" forces the lex/yacc files to be compiled as c
|
|
# the build system otherwise forces them to be c++
|
|
yacc_flags := -x c
|
|
|
|
|
|
##
|
|
# checkpolicy
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := checkpolicy
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := $(common_includes)
|
|
LOCAL_CFLAGS := $(yacc_flags) $(common_cflags)
|
|
LOCAL_SRC_FILES := $(common_src_files) checkpolicy.c
|
|
LOCAL_STATIC_LIBRARIES := libsepol
|
|
LOCAL_YACCFLAGS := -v
|
|
LOCAL_MODULE_CLASS := EXECUTABLES
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
|
|
##
|
|
# checkmodule
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := checkmodule
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := $(common_includes)
|
|
LOCAL_CFLAGS := $(yacc_flags) $(common_cflags)
|
|
LOCAL_SRC_FILES := $(common_src_files) checkmodule.c
|
|
LOCAL_STATIC_LIBRARIES := libsepol
|
|
LOCAL_YACCFLAGS := -v
|
|
LOCAL_MODULE_CLASS := EXECUTABLES
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|