You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
502 B
21 lines
502 B
################################################################################ |
|
# |
|
# Copyright (C) 2017 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) *~ |
|
|
|
|