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 := pvfileparserutils 8 9 10 11 12 13 14 15SRCDIR := ../../src 16INCSRCDIR := ../../include 17 18SRCS := pvfile.cpp \ 19 pvmi_datastreamsyncinterface_ref_factory.cpp \ 20 pvmi_datastreamsyncinterface_ref_impl.cpp 21 22 23HDRS := pvfile.h \ 24 pvmi_datastreamsyncinterface_ref_factory.h \ 25 virtual_buffer.h 26 27 28include $(MK)/library.mk 29install:: headers-install 30 31 32