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 := getactualaacconfig 8 9XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11OPTIMIZE_FOR_PERFORMANCE_OVER_SIZE := true 12 13XCPPFLAGS := -DAAC_PLUS -DHQ_SBR -DPARAMETRICSTEREO 14 15XINCDIRS := ../../../../include ../../../../src 16 17 18SRCDIR := ../../src 19INCSRCDIR := ../../include 20SRCS := getactualaacconfig.cpp\ 21 byte_align.cpp\ 22 get_audio_specific_config.cpp\ 23 get_ele_list.cpp\ 24 get_ga_specific_config.cpp\ 25 get_ics_info.cpp\ 26 get_prog_config.cpp\ 27 getgroup.cpp\ 28 lt_decode.cpp\ 29 infoinit.cpp\ 30 pvmp4audiodecodergetmemrequirements.cpp\ 31 pvmp4audiodecoderinitlibrary.cpp\ 32 set_mc_info.cpp\ 33 sfb.cpp 34 35 36HDRS := getactualaacconfig.h 37 38include $(MK)/library.mk 39 40