Makefile 497 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
  12. camera:
  13. @echo $(BUILD_LOG_START)
  14. make -C camera/
  15. @echo $(BUILD_LOG_END)
  16. clean:
  17. make -C camera/ clean
  18. .PHONY: clean all camera