1 # Get the current local path as the first operation 2 LOCAL_PATH := $(call get_makefile_dir) 3 4 # Clear out the variables used in the local makefiles 5 include $(MK)/clear.mk 6 7 TARGET := 8 9 XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11 SRCDIR := ../../src 12 INCSRCDIR := ../../src 13 14 # compose final src list for actual build 15 SRCS := 16 17 HDRS := pvlogger_stderr_appender.h \ 18 pvlogger_file_appender.h \ 19 pvlogger_mem_appender.h \ 20 pvlogger_time_and_id_layout.h 21 22 23 include $(MK)/library.mk 24 25