mirror of
https://github.com/pion/mediadevices.git
synced 2025-12-24 13:18:11 +08:00
9 lines
179 B
Makefile
9 lines
179 B
Makefile
examples := $(shell find * -maxdepth 0 -type d)
|
|
examples := $(filter-out internal,$(examples))
|
|
|
|
.PHONY: all $(examples)
|
|
all: $(examples)
|
|
|
|
$(examples):
|
|
cd $@ && go build -mod=mod
|