Makefile 502 B

123456789101112131415161718192021
  1. ################################################################################
  2. #
  3. # Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
  4. #
  5. # Global Makefile.
  6. # See lib/Makefile and tests/Makefile for further configuration.
  7. #
  8. ################################################################################
  9. include config.mk
  10. all:
  11. $(MAKE) -C lib
  12. ifeq ($(ENABLE_TESTS),true)
  13. $(MAKE) -C tests
  14. endif
  15. clean:
  16. $(MAKE) -C lib clean
  17. $(MAKE) -C tests clean
  18. $(RM) *~