forked from NitinJami/keychaineditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing colors of help to reset color at end of usage.
* Also added ldid codesigning with entitlements to the Makefile
- Loading branch information
1 parent
5feb9cf
commit 08fddc3
Showing
2 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
ARCH_FLAGS=-arch armv7 -marm -march=armv7-a | ||
ARCH_FLAGS=-arch arm64 -arch armv7 -marm -march=armv7-a | ||
|
||
keychaineditor: main.m | ||
clang \ | ||
-Os -Wall -bind_at_load -fobjc-arc \ | ||
$(ARCH_FLAGS) \ | ||
-mios-version-min=7.0 \ | ||
-isysroot `xcrun --sdk iphoneos8.3 --show-sdk-path` \ | ||
-isysroot `xcrun --sdk iphoneos9.2 --show-sdk-path` \ | ||
-framework Foundation -framework Security \ | ||
-o keychaineditor main.m | ||
ldid -Sentitlements.xml keychaineditor | ||
|
||
clean: | ||
rm -f keychaineditor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters