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:
authorSebastian Dröge <sebastian@centricular.com>2016-12-25 14:35:34 +0300
committerSebastian Dröge <sebastian@centricular.com>2016-12-25 14:35:34 +0300
commitfb21d62868b234e91477c3f67b16e27e8930725f (patch)
tree445a31183f4122d5156a745b5b4dfcc4352efac2 /Makefile
parentfa6712e5aa4bee32982872476470baac99192c97 (diff)
Add simple Makefile to build all subprojects
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..f59f89ca
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+all:
+ cd gst-plugin && cargo build
+ cd gst-plugin-file && cargo build
+ cd gst-plugin-http && cargo build
+ cd gst-plugin-flv && cargo build
+
+clean:
+ cargo clean
+