mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-26 17:57:16 +00:00
15 lines
220 B
Makefile
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
|