-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add makefile to the project to make it easier to work on the tool (#119)
- Loading branch information
1 parent
7b66b75
commit d1a0504
Showing
5 changed files
with
25 additions
and
19 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
compile: | ||
cd kin/grammar; antlr PBXProj.g4 -Dlanguage=Python3 | ||
|
||
install: compile | ||
pip install -e . | ||
|
||
test: install | ||
./tests/tester.py | ||
|
||
test_last: install | ||
find tests -type f -name "*.pbxproj" -print0 \ | ||
| xargs -0 stat -f "%m %N" \ | ||
| sort -rn | head -1 | cut -f2- -d" " \ | ||
| xargs kin |
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
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
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
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