forked from steipete/CodexBar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (29 loc) · 804 Bytes
/
Makefile
File metadata and controls
43 lines (29 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
SHELL := /bin/bash
.PHONY: build check docs-list format lint release restart start start-debug start-release stop test test-live test-tty
start:
./Scripts/compile_and_run.sh
start-debug:
./Scripts/compile_and_run.sh
start-release:
./Scripts/package_app.sh release
pkill -x CodexBar || pkill -f CodexBar.app || true
cd /Users/steipete/Projects/codexbar && open -n /Users/steipete/Projects/codexbar/CodexBar.app
restart: start
stop:
pkill -x CodexBar || pkill -f CodexBar.app || true
check lint:
./Scripts/lint.sh lint
format:
./Scripts/lint.sh format
docs-list:
node Scripts/docs-list.mjs
build:
swift build
test:
swift test
test-tty:
swift test --filter TTYIntegrationTests
test-live:
LIVE_TEST=1 swift test --filter LiveAccountTests
release:
./Scripts/package_app.sh release