Branch: refs/heads/master Author: Matthew Brush matt@geany.org Committer: Matthew Brush matt@geany.org Date: Fri, 26 Apr 2013 01:47:29 UTC Commit: 06cb7d4a30b83c70773d48f27caae15904385aa6 https://github.com/geany/geany-plugins/commit/06cb7d4a30b83c70773d48f27caae1...
Log Message: ----------- Markdown: Remove built file markdown_parser.c
Add a plugin-specific .gitignore file containing `markdown_parser.c` and the built `leg` binary.
Add an include directory for compiling the generated .c file with Waf. (I guess) because it's now using the built file in `_build_` dir instead of the `markdown_parser.c` that was checked-in.
Modified Paths: -------------- markdown/.gitignore markdown/peg-markdown/markdown_parser.c markdown/wscript_build
Modified: markdown/.gitignore 2 files changed, 2 insertions(+), 0 deletions(-) =================================================================== @@ -0,0 +1,2 @@ +/peg-markdown/markdown_parser.c +/peg-markdown/peg-0.1.9/leg
Modified: markdown/peg-markdown/markdown_parser.c 6715 files changed, 0 insertions(+), 6715 deletions(-) =================================================================== No diff available, check online
Modified: markdown/wscript_build 3 files changed, 2 insertions(+), 1 deletions(-) =================================================================== @@ -79,7 +79,8 @@ def _build_peg_markdown(): features = ['c'], use = libraries, target = 'markdown_parser.c', - source = 'peg-markdown/markdown_parser.leg') + source = 'peg-markdown/markdown_parser.leg', + includes = ['peg-markdown'])
# tell the code about what we want defines.append('FULL_PRICE=1')
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).