Makefile 233 B

123456789
  1. # TODO Incorporate testing into audio_utils/tests/Android.bp and remove this file.
  2. INC=../include/audio_utils
  3. main : logplot_tests.cpp $(INC)/LogPlot.h
  4. g++ -I$(INC) -o logplot_tests logplot_tests.cpp
  5. clean :
  6. rm -f logplot_tests