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 := pvamrffparsernode 8 9 10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 11 12 13 14 15 16 17 18SRCDIR := ../../src 19INCSRCDIR := ../../include 20 21SRCS := pvmf_amrffparser_node.cpp pvmf_amrffparser_port.cpp pvmf_amrffparser_factory.cpp 22 23HDRS := pvmf_amrffparser_factory.h \ 24 pvmf_amrffparser_registry_factory.h \ 25 pvmf_amrffparser_events.h 26 27 28 29include $(MK)/library.mk 30