Skip to content

Commit

Permalink
move libraries to more Winxed-friendly filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
plobsing committed Jan 7, 2011
1 parent b1bd60e commit 3bbd5dd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Makefile
Expand Up @@ -22,12 +22,12 @@ PBC2EXE = $(BINDIR)/pbc_to_exe$(EXE)

.PHONY: build install bootstrap

build: blib/ometa-winxed-compiler.pbc blib/ometa-winxed.pbc bin/$(OMETAC_EXE)
build: blib/OMetaWinxed/Compiler.pbc blib/OMetaWinxed.pbc bin/$(OMETAC_EXE)

blib/ometa-winxed-compiler.pbc: src/ometa-winxed-compiler.pir
blib/OMetaWinxed/Compiler.pbc: src/OMetaWinxed/Compiler.pir
$(PARROT) -o $@ $^

blib/ometa-winxed.pbc: src/ometa-winxed.pir
blib/OMetaWinxed.pbc: src/OMetaWinxed.pir
$(PARROT) -o $@ $^

bin/$(OMETAC_EXE): src/ometac.winxed
Expand All @@ -37,11 +37,11 @@ bin/$(OMETAC_EXE): src/ometac.winxed
cp src/ometac$(EXE) $@

install:
$(INSTALL) blib/ometa-winxed.pbc $(LIBDIR)
$(INSTALL) blib/ometa-winxed-compiler.pbc $(LIBDIR)
$(INSTALL) bin/$(OMETAC_EXE) $(BINDIR)
$(INSTALL) blib/OMetaWinxed.pbc $(LIBDIR)
$(INSTALL) blib/OMetaWinxed/Compiler.pbc $(LIBDIR)
$(INSTALL) bin/$(OMETAC_EXE) $(BINDIR)

bootstrap:
cd bootstrap; $(MAKE) stage2.pir
cp bootstrap/stage2.pir src/ometa-winxed-compiler.pir
$(WINXED) -o src/ometa-winxed.pir -c bootstrap/ometa-base.winxed
cd bootstrap; $(MAKE) stage2.pir ometa-base.pir
cp bootstrap/stage2.pir src/OMetaWinxed/Compiler.pir
cp bootstrap/ometa-base.pir src/OMetaWinxed.pir
2 changes: 1 addition & 1 deletion src/ometa-winxed.pir → src/OMetaWinxed.pir
Expand Up @@ -4,7 +4,7 @@

.sub 'fail' :anon :immediate

.annotate 'file', 'bootstrap/ometa-base.winxed'
.annotate 'file', 'ometa-base.winxed'
.annotate 'line', 3
# Body
# {
Expand Down
File renamed without changes.

0 comments on commit 3bbd5dd

Please sign in to comment.