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 7 8TARGET := oscllib 9 10XINCDIRS := ../../../osclio/src 11 12SRCDIR := ../../src 13INCSRCDIR := ../../src 14 15XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 16 17# compose final src list for actual build 18SRCS := oscl_shared_library.cpp \ 19 oscl_configfile_list.cpp \ 20 oscl_library_list.cpp 21 22HDRS := oscl_shared_lib_interface.h \ 23 oscl_shared_library.h \ 24 oscl_library_common.h \ 25 oscl_configfile_list.h \ 26 oscl_library_list.h 27 28 29include $(MK)/library.mk 30