mirror of
https://github.com/go-gst/go-gst.git
synced 2025-10-05 07:56:51 +08:00
13 lines
228 B
Makefile
13 lines
228 B
Makefile
PLUGINS ?= $(patsubst %/,%,$(sort $(dir $(wildcard */))))
|
|
|
|
all: $(PLUGINS)
|
|
|
|
.PHONY: $(PLUGINS)
|
|
$(PLUGINS):
|
|
cd $@ && \
|
|
go generate && \
|
|
go build -o ../libgst$@.so -buildmode c-shared .
|
|
rm libgst$@.h
|
|
|
|
clean:
|
|
rm -f *.so *.h
|