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 := protocolenginenode_download_common 8 9 10 11XINCDIRS += ../../../../config/$(BUILD_ARCH) ../../../../config/linux 12XINCDIRS += ../../../../include ../../src ../../../../protocol_common/src ../../../../base/src 13 14SRCDIR := ../../src 15INCSRCDIR := ../../src 16 17SRCS := pvdl_config_file.cpp \ 18 pvmf_protocol_engine_download_common.cpp \ 19 pvmf_protocol_engine_node_download_common.cpp 20 21HDRS := pvdl_config_file.h \ 22 pvmf_protocol_engine_download_common.h \ 23 pvmf_protocol_engine_node_download_common.h 24 25 26include $(MK)/library.mk 27