Files
frontier/examples/Makefile
2024-06-21 17:19:12 +08:00

23 lines
302 B
Makefile

GOHOSTOS?=$(shell go env GOHOSTOS)
GOARCH?=$(shell go env GOARCH)
.PHONY: all
all: iclm chatroom rtmp
.PHONY: iclm
iclm:
make -C iclm
.PHONY: chatroom
chatroom:
make -C chatroom
.PHONY: rtmp
rtmp:
make -C rtmp
.PHONY: clean
clean:
make clean -C iclm
make clean -C chatroom
make clean -C rtmp