Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
reorg (step 3)
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Nov 6, 2009
1 parent a5d1d68 commit 050f234
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -12,7 +12,7 @@ installable_markdown
*.tmp
man

src/gen_*.pir
markdown/*_gen.pir

t/*.text
t/*.html
Expand Down
18 changes: 9 additions & 9 deletions Makefile.in
Expand Up @@ -37,8 +37,8 @@ PBC_TO_EXE := $(BIN_DIR)/pbc_to_exe@exe@
SOURCES := \
markdown/Compiler.pir \
markdown/Node.pir \
markdown/gen_grammar.pir \
markdown/gen_actions.pir \
markdown/grammar_gen.pir \
markdown/actions_gen.pir \
markdown/builtins.pir \
markdown/builtins/is_strict.pir \
markdown/builtins/length.pir
Expand All @@ -49,7 +49,7 @@ BUILD_CLEANUPS := \
man \
markdown/markdown.pbc \
markdown.pbc \
"markdown/gen_*.pir" \
"markdown/*_gen.pir" \
"*.c" \
"*$(O)" \
#IF(win32): parrot-markdown.exe \
Expand All @@ -71,14 +71,14 @@ markdown/markdown.pbc: $(SOURCES)
markdown.pbc: markdown.pir
$(PARROT) $(PARROT_ARGS) -o markdown.pbc markdown.pir

markdown/gen_grammar.pir: $(PERL6GRAMMAR) markdown/parser/grammar.pg
markdown/grammar_gen.pir: $(PERL6GRAMMAR) markdown/grammar.pg
$(PARROT) $(PARROT_ARGS) $(PERL6GRAMMAR) \
--output=markdown/gen_grammar.pir \
markdown/parser/grammar.pg
--output=markdown/grammar_gen.pir \
markdown/grammar.pg

markdown/gen_actions.pir: $(NQP) markdown/parser/actions.pm
$(PARROT) $(PARROT_ARGS) $(NQP) --output=markdown/gen_actions.pir \
--target=pir markdown/parser/actions.pm
markdown/actions_gen.pir: $(NQP) markdown/actions.pm
$(PARROT) $(PARROT_ARGS) $(NQP) --output=markdown/actions_gen.pir \
--target=pir markdown/actions.pm

installable: installable_markdown@exe@

Expand Down
4 changes: 2 additions & 2 deletions markdown/Compiler.pir
Expand Up @@ -648,8 +648,8 @@ Return generated HTML for all of its children.

=cut

.include 'markdown/gen_grammar.pir'
.include 'markdown/gen_actions.pir'
.include 'markdown/grammar_gen.pir'
.include 'markdown/actions_gen.pir'
.include 'markdown/builtins.pir'
.include 'markdown/Node.pir'

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 050f234

Please sign in to comment.