blob: c0afcd5f44eb22cbe7ab3288e950d57b28abc128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
################################################################################
#
# Copyright (C) 2015 by Intel Corporation, All Rights Reserved.
#
# Global Makefile.
# See lib/Makefile and tests/Makefile for further configuration.
#
################################################################################
include Makefile.conf
all:
$(MAKE) -C lib
$(MAKE) -C tests
clean:
$(MAKE) -C lib clean
$(MAKE) -C tests clean
/bin/rm -f *~
|