Update Makefile with a release target, and an install and install-release target

This commit is contained in:
Sebastian Dröge 2019-07-02 12:50:24 +03:00
parent 6936ce11a7
commit d6a28ead84

View file

@ -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