Files
2020-04-03 12:10:53 -07:00

15 lines
220 B
Makefile

#
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
#
.PHONY: all
all:
make -C libs
make -C apps
.PHONY: clean
clean:
make -C libs clean
make -C apps clean