blob: 3c0e42b9c13255aff0c1597429b061c799b746ff [file] [log] [blame]
David Brownfecda2d2017-09-07 10:20:34 -06001################################################################################
2#
Fabio Utzig3efe6b62017-09-22 16:03:24 -03003# Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
David Brownfecda2d2017-09-07 10:20:34 -06004#
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