-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v0.11.0 - Haskell reimplementation
- Loading branch information
Showing
400 changed files
with
1,348 additions
and
16,645 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 |
---|---|---|
@@ -1,26 +1,11 @@ | ||
*.o | ||
|
||
morloc | ||
morloc.output | ||
lex.yy.* | ||
*.tab.* | ||
vgcore.* | ||
frontend/morloc | ||
tags | ||
tst/ | ||
locout | ||
test.loc | ||
zzz/ | ||
|
||
manifold-nexus.py | ||
|
||
call-* | ||
loc_[0-9]*/ | ||
|
||
*.aux | ||
*.fls | ||
*.log | ||
*.fdb_latexmk | ||
|
||
__pycache__ | ||
Main | ||
*.hi | ||
*.o | ||
.cabal-sandbox/ | ||
cabal.sandbox.config | ||
dist/ | ||
.history | ||
nexus.sh | ||
pool.* |
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 |
---|---|---|
@@ -1,5 +1 @@ | ||
language: c | ||
|
||
dist: trusty | ||
|
||
script: make && make install && make test | ||
language: haskell |
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,3 @@ | ||
To install run | ||
|
||
$ cabal install |
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 |
---|---|---|
@@ -1,19 +1,14 @@ | ||
all: | ||
cd frontend && ${MAKE} | ||
|
||
.PHONY: install | ||
install: | ||
mkdir -p ~/.morloc/bin | ||
mkdir -p ~/.morloc/lib | ||
cp frontend/morloc ~/.morloc/bin/morloc | ||
cp -rf backend/core ~/.morloc/lib | ||
test -d ~/bin || mkdir ~/bin | ||
ln -sf ${PWD}/backend/src/morloc/morloc.py ${HOME}/bin/morloc | ||
cabal install --enable-tests | ||
|
||
.PHONY: test | ||
test: | ||
cd tests && ./runtests.sh -K | ||
cabal test | ||
|
||
.PHONY: run | ||
run: | ||
cabal run | ||
|
||
.PHONY: clean | ||
clean: | ||
cd frontend && ${MAKE} clean | ||
rm -f nexus.sh pool.R |
Oops, something went wrong.