We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9005d9 commit 17f540fCopy full SHA for 17f540f
1 file changed
Makefile
@@ -6,8 +6,10 @@ NUMERIC_VERSION=1.4.0
6
VERSION=v$(NUMERIC_VERSION)
7
PROGRAM_NAME=ppios-rename
8
9
+TARGET=Release
10
+#TARGET=Debug
11
BUILD_DIR=build
-PROGRAM="$(shell pwd)/$(BUILD_DIR)/Build/Products/Release/$(PROGRAM_NAME)"
12
+PROGRAM="$(shell pwd)/$(BUILD_DIR)/Build/Products/$(TARGET)/$(PROGRAM_NAME)"
13
README="$(shell pwd)/README.md"
14
GIT_CMD=git rev-parse --short HEAD
15
GIT_HASH_CHECK=$(GIT_CMD) &> /dev/null
@@ -23,7 +25,7 @@ WORKSPACE=ppios-rename.xcworkspace
23
25
XCODEBUILD_OPTIONS=\
24
26
-workspace $(WORKSPACE) \
27
-scheme ppios-rename \
- -configuration Release \
28
+ -configuration $(TARGET) \
29
-derivedDataPath $(BUILD_DIR)
30
31
.PHONY: default
0 commit comments