mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 10:14:57 +00:00
16 lines
272 B
Makefile
16 lines
272 B
Makefile
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
#
|
|
|
|
.PHONY: all
|
|
all:
|
|
make -C paws
|
|
make -C sctp-agent
|
|
make -C paws db
|
|
make -C sctp-agent db
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
make -C paws clean
|
|
make -C sctp-agent clean
|