2017-09-08 00:20:34 +08:00
|
|
|
################################################################################
|
|
|
|
#
|
2017-09-23 03:03:24 +08:00
|
|
|
# Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
|
2017-09-08 00:20:34 +08:00
|
|
|
#
|
|
|
|
# Global Makefile.
|
|
|
|
# See lib/Makefile and tests/Makefile for further configuration.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
include config.mk
|
|
|
|
|
|
|
|
all:
|
|
|
|
$(MAKE) -C lib
|
|
|
|
ifeq ($(ENABLE_TESTS),true)
|
|
|
|
$(MAKE) -C tests
|
|
|
|
endif
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(MAKE) -C lib clean
|
|
|
|
$(MAKE) -C tests clean
|
|
|
|
$(RM) *~
|
|
|
|
|