X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/6a628388c496987819ef26bda1a99595bce2b1d5..e4131beafc0686efe52d57512fdce1bf012fcdaf:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index d993480..34afb77 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,8 @@ target_binary_name = lrc install_path = /usr/local/bin source_binary_path = $(build_path)/$(configuration)/$(source_binary_name) install_binary_path = $(install_path)/$(target_binary_name) -swift_version = 5.0.1 +swift_version = 5.8.0 +architecture = $(shell uname -m) # Default to release configuration on install install: configuration = release @@ -15,10 +16,10 @@ install: configuration = release default: build build: - swift build --build-path $(build_path) --configuration $(configuration) + swift build --build-path $(build_path) --configuration $(configuration) --arch $(architecture) -Xswiftc -cross-module-optimization install: build - cp $(source_binary_path) $(install_binary_path) + sudo cp $(source_binary_path) $(install_binary_path) test: build swift test @@ -35,7 +36,7 @@ document: build --author Lyricli \ --author_url https://gitlab.com/lyricli \ --github_url https://gitlab.com/lyricli/lyricli \ - --module-version 0.4.0 \ + --module-version 1.0.0 \ --module Lyricli \ clean: