Skip to content
Snippets Groups Projects
Commit 778299a7 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[Makefile] Add clang-release target

parent 7e1754c6
No related branches found
No related tags found
No related merge requests found
Pipeline #135940 failed
...@@ -50,6 +50,14 @@ clang: ...@@ -50,6 +50,14 @@ clang:
CC=clang CXX=clang++ \ CC=clang CXX=clang++ \
BUILDDIR="build-$@" BUILDDIR="build-$@"
.PHONY: clang-release
clang-release:
rm -f build
$(MAKE) build \
CC=clang CXX=clang++ \
BUILDTYPE=release \
BUILDDIR="build-$@"
.PHONY: fibril-locked .PHONY: fibril-locked
fibril-locked: fibril-locked:
rm -f build rm -f build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment