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################################################################################
9include config.mk
10
11all:
12	$(MAKE) -C lib
13ifeq ($(ENABLE_TESTS),true)
14	$(MAKE) -C tests
15endif
16
17clean:
18	$(MAKE) -C lib clean
19	$(MAKE) -C tests clean
20	$(RM) *~
21
22