diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-09-15 08:13:26 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-09-15 08:18:11 +0200 |
commit | d97191d4f95a9fcbf154bcaed297daabd7cf691d (patch) | |
tree | 766a2f07063a01a4fe9e842b53d47c1bc0b1ef7e /Makefile | |
parent | FreeBSD static linking fixes (diff) | |
download | monero-d97191d4f95a9fcbf154bcaed297daabd7cf691d.tar.xz |
new Makefile target: release-static
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -24,6 +24,10 @@ test-release: build-release all-release: build-release +release-static: + mkdir -p build/release + cd build/release && cmake -D STATIC=ON -D ARCH="x86-64" -D CMAKE_BUILD_TYPE=Release ../.. && $(MAKE) + clean: @echo "WARNING: Back-up your wallet if it exists within ./build!" ; \ read -r -p "This will destroy the build directory, continue (y/N)?: " CONTINUE; \ |