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 := m4v_config 8 9 10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 11 12OPTIMIZE_FOR_PERFORMANCE_OVER_SIZE := true 13 14 15 16SRCDIR := ../../src 17INCSRCDIR := ../../include 18 19SRCS := \ 20 m4v_config_parser.cpp 21 22HDRS := \ 23 m4v_config_parser.h 24 25include $(MK)/library.mk 26