aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-07 17:44:22 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-07 17:44:22 +0200
commite08cc4d7bf463b5e11ed6e3b1ea07dbb6a2cd784 (patch)
tree5f88512a3b334ce5120d820b6ebe789ca0d102bd /Makefile
parentserver: fix a possible leak (diff)
downloadcimple-e08cc4d7bf463b5e11ed6e3b1ea07dbb6a2cd784.tar.gz
cimple-e08cc4d7bf463b5e11ed6e3b1ea07dbb6a2cd784.zip
Makefile: add release target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7072726..8a4c755 100644
--- a/Makefile
+++ b/Makefile
@@ -41,6 +41,10 @@ build:
-B '$(call escape,$(cmake_dir))'
cmake --build '$(call escape,$(cmake_dir))' -- -j
+.PHONY: release
+release: CONFIGURATION := Release
+release: build
+
.PHONY: install
install: build
cmake --install '$(call escape,$(cmake_dir))'