mirror of
https://github.com/singchia/frontier.git
synced 2025-09-26 20:31:25 +08:00
23 lines
302 B
Makefile
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
|