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 := pvaacffrecognizer 8 9XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11SRCDIR := ../../src 12INCSRCDIR := ../../include 13 14SRCS := pvaacffrec_factory.cpp \ 15 pvaacffrec_plugin.cpp 16 17HDRS := pvaacffrec_factory.h 18 19include $(MK)/library.mk 20