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

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