Makefile 809 B

12345678910111213141516171819202122232425262728293031
  1. #================================================================
  2. # Copyright (C) 2019 All rights reserved.
  3. #
  4. # filename : Makefile
  5. # Author : wjyang
  6. # Date : 2019-06-20
  7. # Description :
  8. #
  9. #================================================================
  10. PROJECT_TOP:=$(shell pwd)
  11. export PROJECT_TOP
  12. all: test
  13. help:
  14. @echo "make test : make sample for test."
  15. @echo "make clean : clean build project."
  16. test:
  17. +@make -C samples/cameras_egl_demo
  18. +@make -C samples/cameras_opencv_demo
  19. +@make -C samples/cameras_sdk_demo
  20. +@make -C samples/cameras_sdk_noopencv_demo
  21. clean:
  22. +@make clean -C samples/cameras_egl_demo
  23. +@make clean -C samples/cameras_opencv_demo
  24. +@make clean -C samples/cameras_sdk_demo
  25. +@make clean -C samples/cameras_sdk_noopencv_demo
  26. @rm -rf $(PROJECT_TOP)/bin