1# Get the current local path as the first operation 2LOCAL_PATH := $(call get_makefile_dir) 3 4# Clear out the variables used in the local makefiles 5include $(MK)/clear.mk 6 7TARGET := 8 9XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11 12 13 14 15SRCDIR := ../../src 16INCSRCDIR := ../../include 17 18SRCS := 19HDRS := pvmf_cpmplugin_access_interface.h \ 20 pvmf_cpmplugin_access_interface_factory.h \ 21 pvmf_cpmplugin_authentication_interface.h \ 22 pvmf_cpmplugin_authorization_interface.h \ 23 pvmf_cpmplugin_contentmanagement_interface.h \ 24 pvmf_cpmplugin_license_interface.h \ 25 pvmf_cpmplugin_license_interface_types.h \ 26 pvmf_cpmplugin_interface.h \ 27 pvmf_cpmplugin_decryption_context.h 28 29include $(MK)/library.mk 30install:: headers-install 31 32 33