Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Add exe targets to Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed Oct 18, 2009
1 parent 239e497 commit 4dabcc0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build/Makefile.in
Expand Up @@ -82,6 +82,8 @@ CLEANUPS = \
src/gen/*.pir \

all: $(P6REGEX_PBC) $(P6GRAMMAR_PBC)
exe: P6Regex$(EXE) P6Grammar$(EXE)

stage0: $(P6REGEX_PBC_0) $(P6GRAMMAR_PBC_0)
stage1: $(P6REGEX_PBC_1) $(P6GRAMMAR_PBC_1)

Expand Down Expand Up @@ -135,6 +137,14 @@ $(P6REGEX_PBC): $(P6REGEX_G) $(P6REGEX_A) $(P6REGEX_SOURCES)
$(P6GRAMMAR_PBC): $(P6GRAMMAR_G) $(P6GRAMMAR_A) $(P6GRAMMAR_SOURCES)
$(PARROT) -o $(P6GRAMMAR_PBC) src/Regex/P6Grammar.pir

P6Regex$(EXE): $(P6REGEX_PBC) $(PBC_TO_EXE)
$(PBC_TO_EXE) $(P6REGEX_PBC)

P6Grammar$(EXE): $(P6GRAMMAR_PBC) $(PBC_TO_EXE)
$(PBC_TO_EXE) $(P6GRAMMAR_PBC)



bootstrap: p6grammar
./p6grammar --target=pir src/Regex/P6Regex/Grammar.pm >p6regex-grammar.pir
./p6grammar --target=pir src/Regex/P6Grammar/Grammar.pm >p6grammar-grammar.pir
Expand Down

0 comments on commit 4dabcc0

Please sign in to comment.