22 lines
502 B
Makefile
22 lines
502 B
Makefile
|
################################################################################
|
||
|
#
|
||
|
# Copyright (C) 2015 by Intel Corporation, All Rights Reserved.
|
||
|
#
|
||
|
# 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) *~
|
||
|
|