14 lines
226 B
Makefile
14 lines
226 B
Makefile
|
.PHONY: all clean nginx-rtmp stream-playout
|
||
|
|
||
|
all: nginx-rtmp stream-playout
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) -C nginx-rtmp clean
|
||
|
$(MAKE) -C stream-playout clean
|
||
|
|
||
|
nginx-rtmp:
|
||
|
$(MAKE) -C nginx-rtmp
|
||
|
|
||
|
stream-playout:
|
||
|
$(MAKE) -C stream-playout
|