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 := pvwavffrecognizer 8 9 10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 11 12 13 14XINCDIRS = $(VOB_BASE_DIR)/pvmi/recognizer/include 15 16 17 18 19SRCDIR := ../../src 20INCSRCDIR := ../../include 21 22SRCS := pvwavffrec_factory.cpp \ 23 pvwavffrec_plugin.cpp 24 25HDRS := pvwavffrec_factory.h 26 27 28 29 30include $(MK)/library.mk 31