• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# TODO Incorporate testing into audio_utils/tests/Android.bp and remove this file.
2
3INC=../include/audio_utils
4
5main : logplot_tests.cpp $(INC)/LogPlot.h
6	g++ -I$(INC) -o logplot_tests logplot_tests.cpp
7
8clean :
9	rm -f logplot_tests
10