]> git.r.bdr.sh - rbdr/lyricli/blame - Makefile
Add a more detailed readme
[rbdr/lyricli] / Makefile
CommitLineData
169297c8
BB
1configuration = debug
2build_path = .build
3
4# These are used to rename the executable to lrc without renaming the package
5source_binary_name = lyricli
6target_binary_name = lrc
7install_path = /usr/local/bin
8source_binary_path = $(build_path)/$(configuration)/$(source_binary_name)
9install_binary_path = $(install_path)/$(target_binary_name)
10
11# Default to release configuration on install
12install: configuration = release
13
14default: build
15
16build:
17 swift build --build-path $(build_path) --configuration $(configuration)
18
19install: build
20 cp $(source_binary_path) $(install_binary_path)
21
22test: build
23 swift test
24
25clean:
26 swift build --clean
27
28.PHONY: build test clean