mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
Fixed regression Makefile
This commit is contained in:
parent
5933f4c3b1
commit
6cf2b15d40
3 changed files with 4 additions and 3 deletions
|
|
@ -8,8 +8,8 @@ check: $(TESTS)
|
||||||
|
|
||||||
$(TESTS): %: %.lama
|
$(TESTS): %: %.lama
|
||||||
@echo $@
|
@echo $@
|
||||||
cat $@.input | $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log
|
cat $@.input | LAMA=../runtime $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log
|
||||||
cat $@.input | $(LAMAC) -s $< > $@.log && diff $@.log orig/$@.log
|
cat $@.input | LAMA=../runtime $(LAMAC) -s $< > $@.log && diff $@.log orig/$@.log
|
||||||
LAMA=../runtime $(LAMAC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
|
LAMA=../runtime $(LAMAC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
||||||
|
|
@ -1085,6 +1085,7 @@ module Interface =
|
||||||
with Sys_error _ -> None
|
with Sys_error _ -> None
|
||||||
|
|
||||||
let find import paths =
|
let find import paths =
|
||||||
|
(*Printf.printf "Paths to search import in: %s" (show(list) (show(string)) paths); *)
|
||||||
let rec inner = function
|
let rec inner = function
|
||||||
| [] -> None
|
| [] -> None
|
||||||
| p::paths ->
|
| p::paths ->
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
let version = "Version 1.00, 7fd85f27, Wed Feb 19 21:21:18 2020 +0300"
|
let version = "Version 1.00, 5933f4c3, Thu Feb 20 12:43:52 2020 +0300"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue