Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 26 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 602a88dd..fe44cf8e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,31 @@
-all:
+PLUGINS_DIR ?= $(shell pkg-config --variable=pluginsdir gstreamer-1.0)
+
+OS=$(shell uname -s)
+ifeq ($(OS),Linux)
+ SO_SUFFIX=so
+else
+ifeq ($(OS),Darwin)
+ SO_SUFFIX=dylib
+else
+ # FIXME: Bad hack, how to know we're on Windows?
+ SO_SUFFIX=dll
+endif
+endif
+
+all: debug
+
+debug:
cargo build --all
+release:
+ cargo build --all --release
+
+install: debug
+ install target/debug/*.$(SO_SUFFIX) $(PLUGINS_DIR)
+
+install-release: release
+ install target/release/*.$(SO_SUFFIX) $(PLUGINS_DIR)
+
clean:
cargo clean