blob: 2a86c57426a1896a0605750161407fa3598559c4 [file] [log] [blame]
David Brownfecda2d2017-09-07 10:20:34 -06001################################################################################
2#
3# Copyright (C) 2015 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