Merge pull request #79 from jodh-intel/simplify-toplevel-makefile

Simplify toplevel makefile
This commit is contained in:
Sebastien Boeuf 2018-03-20 11:03:45 -07:00 committed by GitHub
commit 0619b0e110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,16 +4,16 @@
# SPDX-License-Identifier: Apache-2.0
#
all: runtime
runtime:
cd cli; \
make
install :
cd cli; \
make install
make -C cli
install:
make -C cli install
clean:
make -C cli clean
help:
@printf "To build a Kata Containers runtime:\n"