Makefile 570 B

1234567891011121314151617181920212223242526272829
  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: common platform camera
  12. common:
  13. make -C common
  14. platform: common
  15. make -C platform
  16. camera: platform
  17. make -C lib_camera
  18. clean:
  19. make -C common clean
  20. make -C platform clean
  21. .PHONY: clean all common platform