We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
make test
1 parent 106f7a4 commit 6e31e14Copy full SHA for 6e31e14
Makefile
@@ -1,7 +1,7 @@
1
# By default export all variables
2
export
3
4
-.PHONY: install release debug build setup clean
+.PHONY: install release debug build setup clean test
5
6
PROJECT ?= 'modulo.xcodeproj'
7
SCHEME ?= 'modulo'
@@ -11,6 +11,9 @@ CONFIGURATION ?= 'Debug'
11
# Build for debugging
12
debug: build
13
14
+test:
15
+ xcodebuild -project $(PROJECT) -scheme ModuloKit test
16
+
17
# Install `modulo` to `/usr/local/bin`
18
install: release
19
cp $(SYMROOT)/Release/modulo /usr/local/bin/
0 commit comments