Makefile 558 B

12345678910111213141516171819202122
  1. ##
  2. # Copyright (C) 2021 Alibaba Group Holding Limited
  3. # Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License version 2 as
  7. # published by the Free Software Foundation.
  8. ##
  9. DIR_TO_ROOT=../../..
  10. include $(DIR_TO_ROOT)/build.param
  11. all: camera_action
  12. camera_action:
  13. @echo $(BUILD_LOG_START)
  14. make -C src/platform/$(PLATFORM)
  15. @echo $(BUILD_LOG_END)
  16. clean:
  17. make -C src/platform/$(PLATFORM) clean
  18. .PHONY: all camera_action clean